added recipe images

This commit is contained in:
vabene1111
2019-12-25 16:46:16 +01:00
parent e2301c0c3a
commit 3cb01d6332
10 changed files with 65 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.0.1 on 2019-12-25 15:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0005_recipebook_recipebookentry'),
]
operations = [
migrations.AddField(
model_name='recipe',
name='image',
field=models.ImageField(blank=True, null=True, upload_to='recipes/'),
),
]