25 lines
698 B
Python
25 lines
698 B
Python
# Generated by Django 2.1.5 on 2019-06-18 10:39
|
|
|
|
import django.contrib.postgres.fields.jsonb
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('safesite', '0211_suggest_clcs'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='suggest',
|
|
name='jyimg2',
|
|
field=django.contrib.postgres.fields.jsonb.JSONField(default=[]),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='suggest',
|
|
name='jyzt',
|
|
field=models.IntegerField(blank=True, choices=[(1, '待评估'), (2, '待处理'), (3, '待确认'), (4, '已归档')], null=True),
|
|
),
|
|
]
|