From 06e04858df3a608b3a424787b06e5df4d82c45ec Mon Sep 17 00:00:00 2001 From: caoqianming Date: Thu, 8 May 2025 16:24:06 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20batchst=E5=AD=97=E6=AE=B5=E5=90=8C?= =?UTF-8?q?=E6=AD=A5=E6=95=B0=E6=8D=AE=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/wpm/migrations/0115_batchst_first_time.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/wpm/migrations/0115_batchst_first_time.py diff --git a/apps/wpm/migrations/0115_batchst_first_time.py b/apps/wpm/migrations/0115_batchst_first_time.py new file mode 100644 index 00000000..aef50426 --- /dev/null +++ b/apps/wpm/migrations/0115_batchst_first_time.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.12 on 2025-05-08 08:23 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('wpm', '0114_auto_20250428_1350'), + ] + + operations = [ + migrations.AddField( + model_name='batchst', + name='first_time', + field=models.DateTimeField(blank=True, null=True, verbose_name='首次操作时间'), + ), + ]