|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.28 on 2020-03-15 14:40
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('account', '0042_userinfo_province_name'),
]
operations = [
migrations.AddField(
model_name='userinfo',
name='appid',
field=models.CharField(blank=True, db_index=True, help_text='appId', max_length=32, null=True, verbose_name='appid'),
),
]
|