Added name to meal plan

This commit is contained in:
2020-02-23 14:23:26 +01:00
parent 78d5ffc8f3
commit 352c0c89f4
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 3.0.3 on 2020-02-23 13:22
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('food_planner', '0006_auto_20200223_1331'),
]
operations = [
migrations.AddField(
model_name='mealplan',
name='name',
field=models.CharField(default='', max_length=255, verbose_name='Name'),
preserve_default=False,
),
]