Makemigrations

Brightcells 6 years ago
parent
commit
deb84bfcb5

+ 20 - 0
mch/migrations/0027_distributorinfo_distributor_short_name.py

@@ -0,0 +1,20 @@
1
+# -*- coding: utf-8 -*-
2
+# Generated by Django 1.11.16 on 2018-10-25 13:37
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
+        ('mch', '0026_auto_20180930_1159'),
12
+    ]
13
+
14
+    operations = [
15
+        migrations.AddField(
16
+            model_name='distributorinfo',
17
+            name='distributor_short_name',
18
+            field=models.CharField(blank=True, help_text='\u7ecf\u9500\u5546\u7b80\u79f0', max_length=8, null=True, verbose_name='distributor_short_name'),
19
+        ),
20
+    ]

+ 25 - 0
statistic/migrations/0010_auto_20181025_2137.py

@@ -0,0 +1,25 @@
1
+# -*- coding: utf-8 -*-
2
+# Generated by Django 1.11.16 on 2018-10-25 13:37
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
+        ('statistic', '0009_saleclerksalestatisticinfo'),
12
+    ]
13
+
14
+    operations = [
15
+        migrations.AddField(
16
+            model_name='saleclerksalestatisticinfo',
17
+            name='distributor_short_name',
18
+            field=models.CharField(blank=True, help_text='\u7ecf\u9500\u5546\u7b80\u79f0', max_length=8, null=True, verbose_name='distributor_short_name'),
19
+        ),
20
+        migrations.AlterField(
21
+            model_name='consumemodelsalestatisticinfo',
22
+            name='model_name',
23
+            field=models.CharField(blank=True, db_index=True, help_text='\u578b\u53f7\u540d\u79f0', max_length=255, null=True, verbose_name='model_name'),
24
+        ),
25
+    ]