24 lines
911 B
Python
24 lines
911 B
Python
# Generated by Django 3.2.12 on 2025-01-15 07:11
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('qm', '0036_auto_20250113_1130'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ftest',
|
|
name='type',
|
|
field=models.CharField(choices=[('purin', '入厂检验'), ('first', '首件检验'), ('process', '过程检验'), ('prod', '成品检验'), ('performance', '性能检验')], max_length=20, verbose_name='检验类型'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='ftestwork',
|
|
name='type',
|
|
field=models.CharField(choices=[('purin', '入厂检验'), ('first', '首件检验'), ('process', '过程检验'), ('prod', '成品检验'), ('performance', '性能检验')], default='prod', max_length=20, verbose_name='检验类型'),
|
|
),
|
|
]
|