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 trial

Python Flask REST API Resourceful Blueprints Marshalling

Jiawei Hu
Jiawei Hu
9,740 Points

What does 'course.review_set' in 'add_reviews' function come from?

I can't figure out what does this course.review_set means, I mean it must be a collection of reviews of a particular course but it was not previously defined in the models.

2 Answers

r h
r h
68,552 Points

Was struggling to find this out myself. Eventually found in models.py:

class Review(Model):
    course = ForeignKeyField(Course, related_name='review_set')

I think up until this point in the Flask tuts, Kenneth never referred to a FK through the related_name, so I wasn't even aware you could do that :P

Josh Keenan
Josh Keenan
19,652 Points

Did you relaunch your workspace? As the video starts a new workspace so it is possible it was added to the new workspace