26 lines
834 B
Python
26 lines
834 B
Python
# Generated by Django 3.2.6 on 2021-11-16 00:41
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inm', '0016_auto_20211112_1124'),
|
|
('wpm', '0012_auto_20211111_1056'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='wproduct',
|
|
name='warehouse',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='inm.warehouse', verbose_name='所在仓库'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='wproduct',
|
|
name='act_state',
|
|
field=models.IntegerField(choices=[(1, '生产中'), (2, '待检测'), (3, '已合格'), (4, '库存中')], default=0, verbose_name='进行状态'),
|
|
),
|
|
]
|