This repository has been archived on 2019-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
basta-server/ofu_app/apps/food/migrations/0007_auto_20180117_0137.py
2018-02-01 10:03:25 +01:00

26 lines
653 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-01-17 00:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('food', '0006_auto_20180113_0121'),
]
operations = [
migrations.AlterField(
model_name='happyhour',
name='description',
field=models.CharField(max_length=1024),
),
migrations.AlterField(
model_name='singlefood',
name='allergens',
field=models.ManyToManyField(blank=True, null=True, to='food.Allergene'),
),
]