parent
dac0ac8b00
commit
da32c934e7
1 changed files with 28 additions and 0 deletions
@ -0,0 +1,28 @@ |
||||
# Generated by Django 4.2.7 on 2026-07-09 10:12 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('ai', '0020_moviehotinfo_show_type'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.CreateModel( |
||||
name='NewMovieSuggestion', |
||||
fields=[ |
||||
('id', models.AutoField(primary_key=True, serialize=False)), |
||||
('movie_zz_code', models.CharField(max_length=50)), |
||||
('movie_name', models.CharField(max_length=50)), |
||||
('suggestion', models.CharField(max_length=50)), |
||||
('delete_flag', models.BooleanField(default=False)), |
||||
], |
||||
options={ |
||||
'verbose_name': '新片推荐排片数', |
||||
'verbose_name_plural': '新片推荐排片数', |
||||
'db_table': 'ai_new_movie_suggestion', |
||||
}, |
||||
), |
||||
] |
||||
Loading…
Reference in new issue