This commit is contained in:
@@ -1,11 +1,8 @@
|
||||
#!/usr/bin/env python3
|
||||
from .db import db
|
||||
from .mealingredient import MealIngredient
|
||||
|
||||
|
||||
class Ingredient(db.Model):
|
||||
__tablename__ = 'Ingredient'
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
name = db.Column(db.String, nullable=False, unique=True)
|
||||
value = db.Column(db.String, nullable=False)
|
||||
items = db.relationship('Meal', secondary=MealIngredient.__tablename__, back_populates='Ingredient')
|
||||
|
||||
Reference in New Issue
Block a user