All checks were successful
Deploy MES Core / deploy (push) Successful in 10s
19 lines
521 B
Python
19 lines
521 B
Python
# Generated by Django 6.0.3 on 2026-03-31 05:09
|
||
|
||
from django.db import migrations, models
|
||
|
||
|
||
class Migration(migrations.Migration):
|
||
|
||
dependencies = [
|
||
('shiftflow', '0008_alter_item_date'),
|
||
]
|
||
|
||
operations = [
|
||
migrations.AddField(
|
||
model_name='deal',
|
||
name='status',
|
||
field=models.CharField(choices=[('lead', 'Зашла'), ('work', 'В работе'), ('done', 'Завершена')], default='work', max_length=10, verbose_name='Статус'),
|
||
),
|
||
]
|