mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-16 06:37:03 +03:00
26 lines
686 B
Python
26 lines
686 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9 on 2016-11-04 01:06
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recipes', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='recipeingredient',
|
|
old_name='recipes',
|
|
new_name='recipe',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='recipeingredient',
|
|
name='unit',
|
|
field=models.CharField(choices=[(b'unit', b'Units'), (b'kg', b'Kilograms'), (b'l', b'Litres'), (b'st', b'Shots')], max_length=20),
|
|
),
|
|
]
|