summaryrefslogtreecommitdiff
path: root/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'models.py')
-rw-r--r--models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/models.py b/models.py
index 9e78d65..4059e20 100644
--- a/models.py
+++ b/models.py
@@ -44,6 +44,7 @@ class Recipe(Base):
id = Column(Integer, primary_key=True, autoincrement=True)
name = Column(String, nullable=False)
+ description = Column(Text, nullable=True)
meal_type = Column(String, nullable=False)
ingredients = Column(Text, nullable=False)
instructions = Column(Text, nullable=True)