You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					28 lines
				
				957 B
			
		
		
			
		
	
	
					28 lines
				
				957 B
			| 
								 
											2 years ago
										 
									 | 
							
								# Generated by Django 4.2.7 on 2024-02-06 00:31
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								from django.db import migrations, models
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class Migration(migrations.Migration):
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    dependencies = [
							 | 
						||
| 
								 | 
							
								        ('update', '0023_cinema_ver_id'),
							 | 
						||
| 
								 | 
							
								    ]
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    operations = [
							 | 
						||
| 
								 | 
							
								        migrations.CreateModel(
							 | 
						||
| 
								 | 
							
								            name='UpdateAlter',
							 | 
						||
| 
								 | 
							
								            fields=[
							 | 
						||
| 
								 | 
							
								                ('update_time', models.DateTimeField(auto_now=True, help_text='最后更新时间', verbose_name='最后更新时间')),
							 | 
						||
| 
								 | 
							
								                ('id', models.AutoField(primary_key=True, serialize=False)),
							 | 
						||
| 
								 | 
							
								                ('ver_id', models.IntegerField(default=0, help_text='版本id', verbose_name='版本id')),
							 | 
						||
| 
								 | 
							
								                ('alter', models.CharField(help_text='命令作用描述', max_length=200, verbose_name='命令作用描述')),
							 | 
						||
| 
								 | 
							
								            ],
							 | 
						||
| 
								 | 
							
								            options={
							 | 
						||
| 
								 | 
							
								                'verbose_name': 'alter',
							 | 
						||
| 
								 | 
							
								                'verbose_name_plural': 'alter',
							 | 
						||
| 
								 | 
							
								                'db_table': 'update_alter',
							 | 
						||
| 
								 | 
							
								            },
							 | 
						||
| 
								 | 
							
								        ),
							 | 
						||
| 
								 | 
							
								    ]
							 |