暂无描述

0004_auto_20200521_2114.py 977B

    # Generated by Django 2.2.12 on 2020-05-21 13:14 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('account', '0003_administratorinfo'), ] operations = [ migrations.AddField( model_name='userinfo', name='consignee_city', field=models.CharField(blank=True, help_text='收货人城市', max_length=255, null=True, verbose_name='consignee_city'), ), migrations.AddField( model_name='userinfo', name='consignee_county', field=models.CharField(blank=True, help_text='收货人区', max_length=255, null=True, verbose_name='consignee_county'), ), migrations.AddField( model_name='userinfo', name='consignee_province', field=models.CharField(blank=True, help_text='收货人省份', max_length=255, null=True, verbose_name='consignee_province'), ), ]