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.
31 lines
1.2 KiB
31 lines
1.2 KiB
# Generated by Django 4.2.7 on 2026-07-10 06:53 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('ai', '0022_newmoviesuggestion_cinema_newmoviesuggestion_zz_code_and_more'), |
|
] |
|
|
|
operations = [ |
|
migrations.CreateModel( |
|
name='MovieGuidance', |
|
fields=[ |
|
('id', models.AutoField(primary_key=True, serialize=False)), |
|
('cinema', models.CharField(default='', max_length=50)), |
|
('zz_code', models.CharField(default='', max_length=50)), |
|
('show_date', models.CharField(default='', max_length=50)), |
|
('movie_zz_code', models.CharField(default='', max_length=50)), |
|
('movie_name', models.CharField(default='', max_length=50)), |
|
('guidance', models.CharField(default='', max_length=50)), |
|
('delete_flag', models.BooleanField(default=False)), |
|
], |
|
options={ |
|
'verbose_name': '集团排片指导', |
|
'verbose_name_plural': '集团排片指导', |
|
'db_table': 'ai_movie_guidance', |
|
}, |
|
), |
|
]
|
|
|