21 lines
560 B
Python
21 lines
560 B
Python
# Generated by Django 3.2.12 on 2024-09-11 08:28
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mtm', '0041_process_mstate_json'),
|
|
('qm', '0023_ftestwork_need_update_wm'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='ftestwork',
|
|
name='shift',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='mtm.shift', verbose_name='班次'),
|
|
),
|
|
]
|