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
787 B
28 lines
787 B
|
2 weeks ago
|
# Generated by Django 4.2.7 on 2026-06-09 10:24
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('ai', '0003_prompttemplate'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.CreateModel(
|
||
|
|
name='CinemaHall',
|
||
|
|
fields=[
|
||
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
||
|
|
('cinema_code', models.CharField(max_length=50)),
|
||
|
|
('hall_id', models.CharField(max_length=50)),
|
||
|
|
('hall_name', models.CharField(max_length=50)),
|
||
|
|
],
|
||
|
|
options={
|
||
|
|
'verbose_name': '影厅数据',
|
||
|
|
'verbose_name_plural': '影厅数据',
|
||
|
|
'db_table': 'ai_show_hall',
|
||
|
|
},
|
||
|
|
),
|
||
|
|
]
|