c2046fad-82dc-4d80-9cbf-eae.../core/migrations/0009_alter_todoitem_status.py
Flatlogic Bot bdc139dfb9 fix kanban
2025-11-23 15:33:20 +00:00

19 lines
530 B
Python

# Generated by Django 5.2.7 on 2025-11-23 15:32
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0008_todoitem_deadline'),
]
operations = [
migrations.AlterField(
model_name='todoitem',
name='status',
field=models.CharField(choices=[('todo', 'To Do'), ('inprogress', 'In Progress'), ('blocked', 'Blocked'), ('delegated', 'Delegated'), ('done', 'Done')], default='todo', max_length=20),
),
]