Files
Django/jituan/migrations/0022_user_wx_openid_wx_appid.py

23 lines
562 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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,
),
),
]