21 lines
590 B
Python
21 lines
590 B
Python
# Generated by Django 3.2.9 on 2021-12-30 08:31
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mtm', '0042_alter_recordformfield_field_type'),
|
|
('wpm', '0041_wproductflow_change_str'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='wprouctticket',
|
|
name='resp_process',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='mtm.process', verbose_name='责任工序'),
|
|
),
|
|
]
|