update

FFIB 2 週間 前
コミット
bfc8103339
共有2 個のファイルを変更した22 個の追加0 個の削除を含む
  1. 20 0
      account/migrations/0066_lensmaninfo_is_tmp_popup.py
  2. 2 0
      account/models.py

+ 20 - 0
account/migrations/0066_lensmaninfo_is_tmp_popup.py

@@ -0,0 +1,20 @@
1
+# -*- coding: utf-8 -*-
2
+
3
+# Generated by Django 3.2.16 on 2026-03-17 10:37
4
+
5
+from django.db import migrations, models
6
+
7
+
8
+class Migration(migrations.Migration):
9
+
10
+    dependencies = [
11
+        ('account', '0065_lensmaninfo_lensman_type'),
12
+    ]
13
+
14
+    operations = [
15
+        migrations.AddField(
16
+            model_name='lensmaninfo',
17
+            name='is_tmp_popup',
18
+            field=models.BooleanField(default=False, help_text='是否临时弹窗', verbose_name='is_tmp_popup'),
19
+        ),
20
+    ]

+ 2 - 0
account/models.py

@@ -405,6 +405,8 @@ class LensmanInfo(BaseModelMixin):
405 405
     identity_card_number = models.CharField(_(u'identity_card_number'), max_length=32, blank=True, null=True, help_text=u'身份证号')
406 406
     identity_card_name = models.CharField(_(u'identity_card_name'), max_length=32, blank=True, null=True, help_text=u'身份证姓名')
407 407
 
408
+    is_tmp_popup = models.BooleanField(_(u'is_tmp_popup'), default=False, help_text=u'是否临时弹窗')
409
+
408 410
     class Meta:
409 411
         verbose_name = _(u'LensmanInfo')
410 412
         verbose_name_plural = _(u'LensmanInfo')