From ae711f3b3b0500357b6ed40aa3ab5a9be2b4caea Mon Sep 17 00:00:00 2001 From: caoqianming Date: Thu, 6 Jan 2022 09:43:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AE=89=E5=85=A8=E5=BA=93?= =?UTF-8?q?=E5=AD=98=E6=95=B0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mtm/migrations/0043_auto_20220106_0942.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 hb_server/apps/mtm/migrations/0043_auto_20220106_0942.py diff --git a/hb_server/apps/mtm/migrations/0043_auto_20220106_0942.py b/hb_server/apps/mtm/migrations/0043_auto_20220106_0942.py new file mode 100644 index 0000000..056ebff --- /dev/null +++ b/hb_server/apps/mtm/migrations/0043_auto_20220106_0942.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.9 on 2022-01-06 01:42 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('mtm', '0042_alter_recordformfield_field_type'), + ] + + operations = [ + migrations.AddField( + model_name='material', + name='count_safe', + field=models.PositiveIntegerField(blank=True, null=True, verbose_name='安全库存总数'), + ), + migrations.AlterField( + model_name='material', + name='count', + field=models.PositiveIntegerField(default=0, verbose_name='物料库存总数'), + ), + ]