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.
29 lines
907 B
29 lines
907 B
|
1 week ago
|
# 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',
|
||
|
|
},
|
||
|
|
),
|
||
|
|
]
|