Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
What good is a database without tables? Let's build a model, connect to our database, and turn our model into a table.
New Terms
- model - A code object that represents a database table
-
SqliteDatabase
- The class from Peewee that lets us connect to an SQLite database -
Model
- The Peewee class that we extend to make a model -
CharField
- A Peewee field that holds onto characters. It's avarchar
in SQL terms -
max_length
- The maximum number of characters in aCharField
-
IntegerField
- A Peewee field that holds an integer -
default
- A default value for the field if one isn't provided -
unique
- Whether the value in the field can be repeated in the table -
.connect()
- A database method that connects to the database -
.create_tables()
- A database method to create the tables for the specified models. -
safe
- Whether or not to throw errors if the table(s) you're attempting to create already exist
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Tinotenda Mangarai
3,828 Points2 Answers
-
ishakahmed
11,359 Points1 Answer
-
walter fernandez
4,992 Points1 Answer
-
jahabeebs
3,804 Points1 Answer
-
Yuyang Peng
5,665 Pointsthings from peewee may be undefined or defined from star imports
Posted by Yuyang PengYuyang Peng
5,665 Points3 Answers
-
Kaytlynn Ransom
Python Web Development Techdegree Student 11,409 Points1 Answer
-
yuting zhou
Python Web Development Techdegree Student 3,085 Points1 Answer
-
tmsmth
10,543 Points1 Answer
-
Jonathan Kuhl
26,133 Points2 Answers
-
Ryan Cross
5,742 Points2 Answers
-
Denis Chernenko
4,077 Points1 Answer
-
Arcee Palabrica
8,100 Points1 Answer
-
PLUS
Dmitriy Ignatiev
Courses Plus Student 6,236 Points1 Answer
-
PLUS
nicole lumpkin
Courses Plus Student 5,328 Points1 Answer
-
Kyle Salisbury
Full Stack JavaScript Techdegree Student 16,363 Points1 Answer
-
ajithadapa
2,023 Points4 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up