28 lines
752 B
Python
28 lines
752 B
Python
# Generated by Django 3.2.6 on 2021-10-29 02:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pm', '0008_subproductionprogress_count_current'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='subproductionprogress',
|
|
name='count_current',
|
|
),
|
|
migrations.AddField(
|
|
model_name='subproductionplan',
|
|
name='is_picked',
|
|
field=models.BooleanField(default=False, verbose_name='是否已领料'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='subproductionprogress',
|
|
name='count',
|
|
field=models.FloatField(verbose_name='应出入数'),
|
|
),
|
|
]
|