|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('product', '0003_auto_20170630_0220'),
]
operations = [
migrations.AlterField(
model_name='productcodesubmitloginfo',
name='mount',
field=models.CharField(max_length=255, blank=True, help_text='\u5361\u53e3', null=True, verbose_name='mount', db_index=True),
),
migrations.AlterField(
model_name='productinfo',
name='mount',
field=models.CharField(max_length=255, blank=True, help_text='\u5361\u53e3', null=True, verbose_name='mount', db_index=True),
),
]
|