:art: Makemigrations

Kimi.Huang 5 lat temu
rodzic
commit
7dc0b7fc6b

+ 20 - 0
integral/migrations/0015_saleclerksubmitloginfo_code_version.py

@@ -0,0 +1,20 @@
1
+# -*- coding: utf-8 -*-
2
+# Generated by Django 1.11.26 on 2020-03-09 09:34
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
+        ('integral', '0014_auto_20200304_1826'),
12
+    ]
13
+
14
+    operations = [
15
+        migrations.AddField(
16
+            model_name='saleclerksubmitloginfo',
17
+            name='code_version',
18
+            field=models.IntegerField(db_index=True, default=1, help_text='\u662f\u5426\u65b0\u7801', verbose_name='code_version'),
19
+        ),
20
+    ]

+ 20 - 0
logs/migrations/0010_mchinfoencryptloginfo_version.py

@@ -0,0 +1,20 @@
1
+# -*- coding: utf-8 -*-
2
+# Generated by Django 1.11.26 on 2020-03-09 09:34
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
+        ('logs', '0009_mchsearchmodelandcameraloginfo_is_selected_model'),
12
+    ]
13
+
14
+    operations = [
15
+        migrations.AddField(
16
+            model_name='mchinfoencryptloginfo',
17
+            name='version',
18
+            field=models.IntegerField(db_index=True, default=1, help_text='\u4e8c\u7ef4\u7801\u7248\u672c', verbose_name='version'),
19
+        ),
20
+    ]

+ 20 - 0
logs/migrations/0011_auto_20200309_1735.py

@@ -0,0 +1,20 @@
1
+# -*- coding: utf-8 -*-
2
+# Generated by Django 1.11.26 on 2020-03-09 09:35
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
+        ('logs', '0010_mchinfoencryptloginfo_version'),
12
+    ]
13
+
14
+    operations = [
15
+        migrations.AlterField(
16
+            model_name='mchinfoencryptloginfo',
17
+            name='version',
18
+            field=models.IntegerField(db_index=True, default=2, help_text='\u4e8c\u7ef4\u7801\u7248\u672c', verbose_name='version'),
19
+        ),
20
+    ]

+ 25 - 0
mch/migrations/0051_auto_20200314_2340.py

@@ -0,0 +1,25 @@
1
+# -*- coding: utf-8 -*-
2
+# Generated by Django 1.11.26 on 2020-03-14 15:40
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', '0050_cameramodelinfo_camera_market_time'),
12
+    ]
13
+
14
+    operations = [
15
+        migrations.AddField(
16
+            model_name='modelcamerabodyinfo',
17
+            name='is_ILDC',
18
+            field=models.BooleanField(db_index=True, default=False, help_text='\u662f\u5426\u9700\u8981\u539f\u5382\u8f6c\u63a5\u73af', verbose_name='is_ILDC'),
19
+        ),
20
+        migrations.AddField(
21
+            model_name='modelcamerabodyinfo',
22
+            name='remark',
23
+            field=models.CharField(blank=True, help_text='\u5907\u6ce8', max_length=255, null=True, verbose_name='remark'),
24
+        ),
25
+    ]