diff --git a/apps/sam/migrations/0006_alter_order_state.py b/apps/sam/migrations/0006_alter_order_state.py new file mode 100644 index 00000000..441ceb28 --- /dev/null +++ b/apps/sam/migrations/0006_alter_order_state.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.12 on 2023-10-20 01:17 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('sam', '0005_auto_20231019_1812'), + ] + + operations = [ + migrations.AlterField( + model_name='order', + name='state', + field=models.PositiveSmallIntegerField(choices=[(10, '创建中'), (20, '已提交'), (30, '进行中'), (40, '已交付')], default=10, help_text="((10, '创建中'), (20, '已提交'), (30, '进行中'), (40, '已交付'))", verbose_name='订单状态'), + ), + ]