mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-14 21:57:14 +03:00
af8888f58e
* Use Python 3.10 for deployments on PyPi * Update gh-action-pypi-publish version * Update python version * Update checkout and setup-python versions * Upgrade dev dependencies * fromat examples and few files to follow black new version * Upgrade pytest version --------- Co-authored-by: Firas Kafri <firaskafri@Firass-MacBook-Pro-2.local>
31 lines
767 B
Python
31 lines
767 B
Python
# Generated by Django 1.9 on 2016-11-04 01:06
|
|
|
|
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,
|
|
),
|
|
),
|
|
]
|