13 lines
415 B
Python
13 lines
415 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [('core', '0004_item_comment')]
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='item',
|
|
name='kind',
|
|
field=models.CharField(choices=[('todo', 'Aufgabe'), ('note', 'Notiz'), ('link', 'Link'), ('journal', 'Journal')], default='note', max_length=10),
|
|
),
|
|
]
|