meal plan context menu added, further progress

This commit is contained in:
Kaibu
2021-09-22 20:03:03 +02:00
parent 2012ef9e46
commit 5c85369120
23 changed files with 442 additions and 219 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 3.2.7 on 2021-09-22 15:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0153_auto_20210915_2327'),
]
operations = [
migrations.AddField(
model_name='mealtype',
name='color',
field=models.CharField(blank=True, max_length=7, null=True),
),
migrations.AddField(
model_name='mealtype',
name='icon',
field=models.CharField(blank=True, max_length=16, null=True),
),
]