From 10024f0d055463bd48fd832d2a202614d487313d Mon Sep 17 00:00:00 2001 From: caoqianming Date: Fri, 10 May 2024 11:17:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E5=90=A8=E7=86=9F?= =?UTF-8?q?=E6=96=99=E5=8F=91=E7=94=B5=E9=87=8F=E5=8F=8A=E8=AE=A1=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../0034_enstat_production_elec_unit.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/enm/migrations/0034_enstat_production_elec_unit.py diff --git a/apps/enm/migrations/0034_enstat_production_elec_unit.py b/apps/enm/migrations/0034_enstat_production_elec_unit.py new file mode 100644 index 00000000..aa9f8f8c --- /dev/null +++ b/apps/enm/migrations/0034_enstat_production_elec_unit.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.12 on 2024-05-10 03:14 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('enm', '0033_remove_mpoint_mgroups_allocate'), + ] + + operations = [ + migrations.AddField( + model_name='enstat', + name='production_elec_unit', + field=models.FloatField(default=0, help_text='kw·h/t', verbose_name='吨熟料发电量'), + ), + ]