From c5e116a6d131b75ab6e18e8fdcd7fd8196f3f46e Mon Sep 17 00:00:00 2001 From: zty Date: Tue, 7 May 2024 17:52:26 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=EF=BC=9A=E6=97=A5=E5=B8=B8=E7=9B=91?= =?UTF-8?q?=E7=9D=A3=E7=BB=93=E6=9E=9C=E6=97=A5=E6=9C=9F=E4=B8=BA=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0067_auto_20240507_1751.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 server/apps/supervision/migrations/0067_auto_20240507_1751.py diff --git a/server/apps/supervision/migrations/0067_auto_20240507_1751.py b/server/apps/supervision/migrations/0067_auto_20240507_1751.py new file mode 100644 index 0000000..60991e3 --- /dev/null +++ b/server/apps/supervision/migrations/0067_auto_20240507_1751.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.12 on 2024-05-07 09:51 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('supervision', '0066_auto_20240401_1641'), + ] + + operations = [ + migrations.AlterField( + model_name='oinspect', + name='result_date', + field=models.DateField(blank=True, default='', null=True, verbose_name='检查结果日期'), + ), + migrations.AlterField( + model_name='pt', + name='certificate_date', + field=models.DateField(blank=True, null=True, verbose_name='证书日期'), + ), + ]