Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKennedy Malonga
18,790 Pointsi still dont understand this for a while now
i tried different ways it still left me struggling
import datetime
from peewee import *
DATABASE = SqliteDatabase('recipes.db')
class Recipe(Model):
name = CharField()
created_at = DateTimeField(default=datetime.datetime.now)
class Meta:
database = DATABASE
class Ingredient(Model):
recipe = ForeignKeyField(name, description, quantity, measurement_type)
quantity = DecimalField()
class Meta:
database = DATABASE
# TODO: Ingredient model
# name - string (e.g. "carrots")
# description - string (e.g. "chopped")
# quantity - decimal (e.g. ".25")
# measurement_type - string (e.g. "cups")
# recipe - foreign key
from flask.ext.restful import Resource
import models
1 Answer
jb30
44,806 Pointsclass Ingredient(Model):
recipe = ForeignKeyField(name, description, quantity, measurement_type)
quantity = DecimalField()
class Meta:
database = DATABASE
# TODO: Ingredient model
# name - string (e.g. "carrots")
# description - string (e.g. "chopped")
# quantity - decimal (e.g. ".25")
# measurement_type - string (e.g. "cups")
# recipe - foreign key
Instead of recipe = ForeignKeyField(name, description, quantity, measurement_type)
, try recipe = ForeignKeyField(Recipe)
to link to the Recipe
model.
In addition to the recipe
and quantity
fields you already have, you will also need to add fields for name
, description
, and measurement_type
. Since they will be strings, you can use CharField()
to initialize them, such as name = CharField()
.