parent
7d755311ab
commit
ce0b4a501a
10 changed files with 180 additions and 64 deletions
@ -0,0 +1,18 @@ |
||||
# Generated by Django 4.2.7 on 2024-01-11 06:45 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('update', '0015_rename_version_release_release_and_more'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='updatecommand', |
||||
name='is_force', |
||||
field=models.BooleanField(default=False, help_text='必选项', verbose_name='必选项'), |
||||
), |
||||
] |
@ -0,0 +1,17 @@ |
||||
# Generated by Django 4.2.7 on 2024-01-11 07:19 |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('update', '0016_updatecommand_is_force'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterModelOptions( |
||||
name='updatecommand', |
||||
options={'ordering': ['id', 'desc', 'command', 'ver_id', 'process', 'run_num', 'is_sys', 'is_checked', 'is_force', 'is_delete', 'update_time'], 'verbose_name': '升级脚本', 'verbose_name_plural': '升级脚本'}, |
||||
), |
||||
] |
@ -0,0 +1,17 @@ |
||||
# Generated by Django 4.2.7 on 2024-01-11 07:24 |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('update', '0017_alter_updatecommand_options'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterModelOptions( |
||||
name='updatecommand', |
||||
options={'verbose_name': '升级脚本', 'verbose_name_plural': '升级脚本'}, |
||||
), |
||||
] |
Loading…
Reference in new issue