24 lines
611 B
Python
24 lines
611 B
Python
# Generated by Django 3.2.12 on 2025-07-18 07:58
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('qm', '0051_alter_ftestwork_batch'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='qctmat',
|
|
name='use_for_in',
|
|
field=models.BooleanField(default=True, verbose_name='可用于消耗'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='qctmat',
|
|
name='use_for_out',
|
|
field=models.BooleanField(default=True, verbose_name='可用于产出'),
|
|
),
|
|
]
|