|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.16 on 2018-10-25 13:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('statistic', '0009_saleclerksalestatisticinfo'),
]
operations = [
migrations.AddField(
model_name='saleclerksalestatisticinfo',
name='distributor_short_name',
field=models.CharField(blank=True, help_text='\u7ecf\u9500\u5546\u7b80\u79f0', max_length=8, null=True, verbose_name='distributor_short_name'),
),
migrations.AlterField(
model_name='consumemodelsalestatisticinfo',
name='model_name',
field=models.CharField(blank=True, db_index=True, help_text='\u578b\u53f7\u540d\u79f0', max_length=255, null=True, verbose_name='model_name'),
),
]
|