24 lines
563 B
Python
24 lines
563 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-10-11 15:56
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0017_kaehmyform_text"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="kaehmyform",
|
|
name="year",
|
|
field=models.IntegerField(
|
|
choices=[(1, "1"), (2, "2"), (3, "3"), (4, "4"), (5, "N")],
|
|
verbose_name="Year",
|
|
),
|
|
),
|
|
]
|