storage backend reworked

This commit is contained in:
vabene1111
2018-05-25 16:49:10 +02:00
parent c5986c6e7f
commit 4871b6194c
21 changed files with 278 additions and 128 deletions

View File

@@ -0,0 +1,20 @@
# Generated by Django 2.0.5 on 2018-05-25 14:05
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0002_auto_20180525_1558'),
]
operations = [
migrations.AddField(
model_name='recipeimport',
name='storage',
field=models.ForeignKey(default=0, on_delete=django.db.models.deletion.PROTECT, to='cookbook.Storage'),
preserve_default=False,
),
]