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.
18 lines
473 B
18 lines
473 B
# Generated by Django 4.2.7 on 2025-07-18 08:10 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('update', '0027_updatecommand_combo_cmd_alter_updatecommand_run'), |
|
] |
|
|
|
operations = [ |
|
migrations.AddField( |
|
model_name='cinema', |
|
name='is_delete', |
|
field=models.BooleanField(default=False, help_text='是否删除', verbose_name='是否删除'), |
|
), |
|
]
|
|
|