19 lines
519 B
Python
19 lines
519 B
Python
# Generated by Django 3.0.5 on 2020-10-19 02:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('project', '0048_auto_20201019_0937'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='certappunit',
|
|
name='inspectionstate',
|
|
field=models.CharField(blank=True, choices=[('CTC代收', 'CTC代收'), ('自收', '自收')], max_length=50, null=True, verbose_name='实验室检验状态'),
|
|
),
|
|
]
|