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), + ), + ]