Add serving count to recipe

This commit is contained in:
tourn
2020-08-30 15:59:25 +02:00
parent 82497c734a
commit 652b4bf2af
6 changed files with 34 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.0.7 on 2020-08-30 13:32
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0074_remove_keyword_created_by'),
]
operations = [
migrations.AddField(
model_name='recipe',
name='servings',
field=models.IntegerField(default=1),
),
]