init
This commit is contained in:
12
planning/models.py
Normal file
12
planning/models.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.db import models
|
||||
from recipe_book.models import Recipe
|
||||
# Create your models here.
|
||||
|
||||
class WeekPlanning(models.Model):
|
||||
pass
|
||||
|
||||
|
||||
class DayMeals(models.Model):
|
||||
midi = models.ForeignKey(
|
||||
Recipe,
|
||||
on_delete=models.CASCADE )
|
||||
Reference in New Issue
Block a user