19 lines
534 B
Python
19 lines
534 B
Python
# Generated by Django 2.1.5 on 2019-09-25 11:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('safesite', '0270_auto_20190920_1200'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='trouble',
|
|
name='shresult',
|
|
field=models.IntegerField(blank=True, choices=[(1, '通过'), (2, '审核未通过'), (3, '复查未通过'), (4, '已修改'), (5, '评估未通过'), (6, '未采纳')], null=True),
|
|
),
|
|
]
|