25 lines
705 B
Python
25 lines
705 B
Python
# Generated by Django 3.0.7 on 2020-08-07 09:47
|
|
|
|
import django.contrib.postgres.fields.jsonb
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('project', '0013_auto_20200807_1745'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='subapplication',
|
|
name='factory_v',
|
|
field=django.contrib.postgres.fields.jsonb.JSONField(null=True, verbose_name='生产厂'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='subapplication',
|
|
name='manufacture_v',
|
|
field=django.contrib.postgres.fields.jsonb.JSONField(null=True, verbose_name='制造商'),
|
|
),
|
|
]
|