Initial commit from monorepo
This commit is contained in:
18
teams_app/migrations/0009_alter_teamaddress_status.py
Normal file
18
teams_app/migrations/0009_alter_teamaddress_status.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.8 on 2025-12-30 02:48
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('teams_app', '0008_remove_graph_node_id_and_change_default_status'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='teamaddress',
|
||||
name='status',
|
||||
field=models.CharField(choices=[('pending', 'Ожидает обработки'), ('active', 'Активен'), ('error', 'Ошибка')], default='pending', max_length=20),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user