From 80c0c71b13a09236490479040062c89e4f6653f2 Mon Sep 17 00:00:00 2001 From: Mahmoud <“aljouhar@rptu.de”> Date: Mon, 25 Dec 2023 19:56:49 +0100 Subject: [PATCH] migrations --- cookbook/migrations/0206_recipebook_order.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cookbook/migrations/0206_recipebook_order.py diff --git a/cookbook/migrations/0206_recipebook_order.py b/cookbook/migrations/0206_recipebook_order.py new file mode 100644 index 000000000..2876c98e4 --- /dev/null +++ b/cookbook/migrations/0206_recipebook_order.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2023-12-24 23:57 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0205_alter_food_fdc_id_alter_propertytype_fdc_id'), + ] + + operations = [ + migrations.AddField( + model_name='recipebook', + name='order', + field=models.IntegerField(default=0), + ), + ]