20 lines
492 B
Python
20 lines
492 B
Python
# Generated by Django 3.2.12 on 2023-12-27 01:46
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('em', '0009_alter_equipment_description'),
|
|
('wpm', '0038_auto_20231218_1420'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='mlog',
|
|
name='equipments',
|
|
field=models.ManyToManyField(blank=True, to='em.Equipment', verbose_name='多选生产设备'),
|
|
),
|
|
]
|