31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
# Generated by Django 3.0.7 on 2020-08-06 09:40
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('system', '0027_auto_20200806_1623'),
|
|
('project', '0008_auto_20200806_1722'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='subapplication',
|
|
name='cccpv_class',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='subapplication_cccpv_class', to='system.Dict', verbose_name='涉及CCC/PV分类'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='subapplication',
|
|
name='cert_field_code',
|
|
field=models.CharField(max_length=50, null=True, verbose_name='认证领域代号'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='subapplication',
|
|
name='cnas_scopes',
|
|
field=models.ManyToManyField(blank=True, null=True, related_name='subapplication_cnas_sopes', to='system.Dict', verbose_name='涉及cnas分类'),
|
|
),
|
|
]
|