misc fixes and updates

This commit is contained in:
vabene1111
2018-05-15 20:59:52 +02:00
parent c720f6c193
commit b92c6dd88f
6 changed files with 59 additions and 9 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 2.0.5 on 2018-05-15 18:35
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0003_auto_20180514_1121'),
]
operations = [
migrations.AlterField(
model_name='recipe',
name='category',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='cookbook.Category'),
),
]