21 lines
568 B
Python
21 lines
568 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.7 on 2018-01-11 10:14
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('food', '0002_auto_20180105_1449'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='menu',
|
|
name='location',
|
|
field=models.CharField(choices=[('ERBA', 'Erba'), ('MARKUSPLATZ', 'Markusplatz'), ('FEKI', 'Feldkirchenstrasse'), ('AUSTRASSE', 'Austrasse')], max_length=60),
|
|
),
|
|
]
|