From 47895ac1099eb540ef4bed1c8de1e8e185e5ea5a Mon Sep 17 00:00:00 2001 From: caoqianming Date: Fri, 20 Oct 2023 09:25:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/sam/migrations/0006_alter_order_state.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/sam/migrations/0006_alter_order_state.py 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='订单状态'), + ), + ]