You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
505 B
Python
19 lines
505 B
Python
# Generated by Django 3.1.1 on 2020-10-19 09:50
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('input', '0012_auto_20201007_0754'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='library',
|
|
name='type',
|
|
field=models.CharField(choices=[('LIB', 'Bibliotheksstipendium'), ('ELIT', 'eLiteraturstipendium'), ('SOFT', 'Softwarestipendium')], default='LIB', max_length=4),
|
|
),
|
|
]
|