Add kanban updates and static root
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user