|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2018-09-30 03:59
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mch', '0025_auto_20180917_1554'),
]
operations = [
migrations.AlterField(
model_name='administratorinfo',
name='phone',
field=models.CharField(blank=True, db_index=True, help_text='\u7ba1\u7406\u5458\u7535\u8bdd', max_length=11, null=True, verbose_name='phone'),
),
migrations.AlterField(
model_name='operatorinfo',
name='phone',
field=models.CharField(blank=True, db_index=True, help_text='\u64cd\u4f5c\u5458\u7535\u8bdd', max_length=11, null=True, verbose_name='phone'),
),
]
|