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
521 B
18 lines
521 B
# Generated by Django 4.2.7 on 2024-01-08 03:12 |
|
|
|
from django.db import migrations, models |
|
|
|
|
|
class Migration(migrations.Migration): |
|
|
|
dependencies = [ |
|
('update', '0005_cinema_user'), |
|
] |
|
|
|
operations = [ |
|
migrations.AddField( |
|
model_name='updatecommand', |
|
name='process', |
|
field=models.CharField(default='setup', help_text='执行顺序 setup 对比数据库前执行 teardown 对比数据库后执行', max_length=20, verbose_name='执行顺序'), |
|
), |
|
]
|
|
|