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 trialPeter Javorkai
31,477 PointsI've ran through my code numerous times but I still can't find the issue. Is there anything badly set up with my fields?
I can't find the reason why the code is not passing in the challenge, please help if you can spot the missing piece. Thanks!
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):
name = CharField()
description = CharField()
quantity = DecimalField()
measurement_type = CharField()
recipe = ForeignKeyField()
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
2 Answers
Ryan S
27,276 PointsHi Peter,
The issue is that when using ForeignKeyField()
, you need to specify the related model to which it refers.
In this case, it would be the Recipe model:
recipe = ForeignKeyField(Recipe)
Good luck.
Peter Javorkai
31,477 PointsThanks Ryan! Oh yes, how dumb I was... ugh