# -*- coding: utf-8 -*- # Generated by Django 1.10.5 on 2017-02-24 10:47 from __future__ import unicode_literals from django.db import migrations, models import modelcluster.fields class Migration(migrations.Migration): dependencies = [ ('breads', '0004_auto_20170220_0111'), ] operations = [ migrations.CreateModel( name='BreadIngredient', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=255)), ], options={ 'verbose_name_plural': 'Bread ingredients', }, ), migrations.AddField( model_name='breadpage', name='ingredients', field=modelcluster.fields.ParentalManyToManyField(blank=True, to='breads.BreadIngredient'), ), ]