23 lines
553 B
Python
23 lines
553 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.2 on 2017-10-28 17:00
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('food', '0005_auto_20171020_0549'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Allergene',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=60, unique=True)),
|
|
],
|
|
),
|
|
]
|