Files
MES_Core/shiftflow/migrations/0009_deal_status.py
ackFromRedmi c2778d9ec8
All checks were successful
Deploy MES Core / deploy (push) Successful in 10s
Теперь сделки на странице планирования
2026-03-31 08:31:54 +03:00

19 lines
521 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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='Статус'),
),
]