cnas/server/apps/system/migrations/0015_auto_20200609_1749.py

25 lines
708 B
Python

# Generated by Django 3.0.7 on 2020-06-09 09:49
import django.contrib.postgres.fields.jsonb
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('system', '0014_auto_20200609_1738'),
]
operations = [
migrations.AddField(
model_name='dict',
name='other',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True, verbose_name='其它信息'),
),
migrations.AddField(
model_name='historicaldict',
name='other',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True, verbose_name='其它信息'),
),
]