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.
21 lines
541 B
Python
21 lines
541 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.1 on 2017-07-04 17:11
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('members', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='memberlist',
|
|
name='tour_type',
|
|
field=models.IntegerField(choices=[(0, 'Gemeinschaftstour'), (1, 'Führungstour'), (2, 'Ausbildung')], verbose_name='Art der Tour'),
|
|
),
|
|
]
|