added customizable Servings text

This commit is contained in:
vabene1111
2021-01-21 20:05:46 +01:00
parent 32044907bf
commit 6992bf83aa
6 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.1.5 on 2021-01-21 19:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0099_auto_20210113_1518'),
]
operations = [
migrations.AddField(
model_name='recipe',
name='servings_text',
field=models.CharField(blank=True, default='', max_length=32),
),
]