27 lines
870 B
Python
27 lines
870 B
Python
# Generated by Django 3.2.6 on 2021-11-02 01:35
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pm', '0009_auto_20211029_1017'),
|
|
('wpm', '0002_auto_20211029_1336'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='wproduct',
|
|
name='production_plan',
|
|
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='pm.productionplan', verbose_name='关联主生产计划'),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AlterField(
|
|
model_name='wproduct',
|
|
name='subproduction_plan',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='pm.subproductionplan', verbose_name='当前子生产计划'),
|
|
),
|
|
]
|