:art: Makemigrations

huangqimin001 4 anni fa
parent
commit
7c5d960672
1 ha cambiato i file con 20 aggiunte e 0 eliminazioni
  1. 20 0
      member/migrations/0020_memberactivityinfo_group_share_max_integral.py

+ 20 - 0
member/migrations/0020_memberactivityinfo_group_share_max_integral.py

@@ -0,0 +1,20 @@
1
+# -*- coding: utf-8 -*-
2
+# Generated by Django 1.11.29 on 2020-12-02 07:03
3
+from __future__ import unicode_literals
4
+
5
+from django.db import migrations, models
6
+
7
+
8
+class Migration(migrations.Migration):
9
+
10
+    dependencies = [
11
+        ('member', '0019_auto_20201202_1203'),
12
+    ]
13
+
14
+    operations = [
15
+        migrations.AddField(
16
+            model_name='memberactivityinfo',
17
+            name='group_share_max_integral',
18
+            field=models.IntegerField(default=0, help_text='\u7fa4\u7ec4\u5206\u4eab\u4f1a\u5458\u79ef\u5206\u5355\u4eba\u4e0a\u9650', verbose_name='group_share_max_integral'),
19
+        ),
20
+    ]