diff --git a/apps/wpm/migrations/0061_wmaterial_state.py b/apps/wpm/migrations/0061_wmaterial_state.py new file mode 100644 index 00000000..b674b426 --- /dev/null +++ b/apps/wpm/migrations/0061_wmaterial_state.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.12 on 2024-08-15 02:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('wpm', '0060_auto_20240812_1048'), + ] + + operations = [ + migrations.AddField( + model_name='wmaterial', + name='state', + field=models.PositiveSmallIntegerField(choices=[(10, '合格'), (20, '不合格'), (30, '返修'), (40, '检验'), (50, '报废')], default=10, verbose_name='状态'), + ), + ]