mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-15 06:08:59 +03:00
21 lines
452 B
Python
21 lines
452 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9 on 2016-11-04 00:50
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('ingredients', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='ingredient',
|
||
|
name='notes',
|
||
|
field=models.TextField(blank=True, null=True),
|
||
|
),
|
||
|
]
|