13 lines
444 B
Python
13 lines
444 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [('core', '0008_item_completed_at_kanban')]
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='item',
|
|
name='kanban_status',
|
|
field=models.CharField(choices=[('inbox', 'Eingang'), ('todo', 'Todo'), ('progress', 'In Progress'), ('done', 'Erledigt')], default='inbox', max_length=20),
|
|
),
|
|
]
|