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

Aaron Banerjee
Aaron Banerjee
6,876 Points

class Meta in python databases

Does

class Meta:
   database =db

allow us to control any new instances added to a the models table based on what the fields require? if not, what does the the meta class and database =db do

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

The class Meta gives special instructions to the class constructor when creating this class. In flask, the Model base class includes methods for creating and saving instances of this class to a database. This requires knowing which database to use. Since the database isn't part of the class itself, this class constructor information is provided through the special Meta class.

Post back if you need more information. Good luck!!