23 lines
562 B
Python
23 lines
562 B
Python
from django.db import migrations, models
|
||
|
||
|
||
class Migration(migrations.Migration):
|
||
|
||
dependencies = [
|
||
('jituan', '0021_club_migrate'),
|
||
]
|
||
|
||
operations = [
|
||
migrations.AddField(
|
||
model_name='userwxopenid',
|
||
name='wx_appid',
|
||
field=models.CharField(
|
||
blank=True,
|
||
default='',
|
||
db_index=True,
|
||
help_text='产生该 openid 的 AppID:小程序或服务号;空=历史小程序绑定',
|
||
max_length=32,
|
||
),
|
||
),
|
||
]
|