@@ -0,0 +1,20 @@ |
||
1 |
+# -*- coding: utf-8 -*- |
|
2 |
+# Generated by Django 1.11.23 on 2019-08-26 08:24 |
|
3 |
+from __future__ import unicode_literals |
|
4 |
+ |
|
5 |
+from django.db import migrations, models |
|
6 |
+ |
|
7 |
+ |
|
8 |
+class Migration(migrations.Migration): |
|
9 |
+ |
|
10 |
+ dependencies = [ |
|
11 |
+ ('mch', '0046_auto_20190826_1547'), |
|
12 |
+ ] |
|
13 |
+ |
|
14 |
+ operations = [ |
|
15 |
+ migrations.AlterField( |
|
16 |
+ model_name='modelinfo', |
|
17 |
+ name='is_important', |
|
18 |
+ field=models.BooleanField(db_index=True, default=False, help_text='\u662f\u5426\u91cd\u8981\u578b\u53f7', verbose_name='is_important'), |
|
19 |
+ ), |
|
20 |
+ ] |
@@ -173,7 +173,7 @@ class ModelInfo(BaseModelMixin): |
||
173 | 173 |
|
174 | 174 |
display = models.BooleanField(_(u'display'), default=True, help_text=_(u'Display'), db_index=True) |
175 | 175 |
|
176 |
- is_important = models.BooleanField(_(u'is_important'), default=True, help_text=_(u'是否重要型号'), db_index=True) |
|
176 |
+ is_important = models.BooleanField(_(u'is_important'), default=False, help_text=_(u'是否重要型号'), db_index=True) |
|
177 | 177 |
|
178 | 178 |
class Meta: |
179 | 179 |
verbose_name = _(u'型号信息') |