@@ -0,0 +1,29 @@ |
||
1 |
+# -*- coding: utf-8 -*- |
|
2 |
+# Generated by Django 1.11.23 on 2019-08-26 10:08 |
|
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 |
+ ('sales', '0003_auto_20190826_1614'), |
|
12 |
+ ] |
|
13 |
+ |
|
14 |
+ operations = [ |
|
15 |
+ migrations.AddField( |
|
16 |
+ model_name='salesresponsibilityinfo', |
|
17 |
+ name='openid', |
|
18 |
+ field=models.CharField(blank=True, db_index=True, help_text='\u5fae\u4fe1 OpenID', max_length=32, null=True, verbose_name='openid'), |
|
19 |
+ ), |
|
20 |
+ migrations.AddField( |
|
21 |
+ model_name='salesresponsibilityinfo', |
|
22 |
+ name='unionid', |
|
23 |
+ field=models.CharField(blank=True, db_index=True, help_text='\u5fae\u4fe1 UnionID', max_length=32, null=True, verbose_name='unionid'), |
|
24 |
+ ), |
|
25 |
+ migrations.AlterUniqueTogether( |
|
26 |
+ name='salesresponsibilityinfo', |
|
27 |
+ unique_together=set([('unionid', 'brand_id')]), |
|
28 |
+ ), |
|
29 |
+ ] |