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 Using Databases in Python Meet Peewee Create Table

Thomas McDonnell
Thomas McDonnell
8,212 Points

I'm really confused here on task 3

I've checked all the official docs and the code seems correct. Is there something I am missing ?

tables.py
from peewee import *

db = SqliteDatabase("challenges.db")

class Challenge(Model):
    name = CharField(max_lenght=100, unique=True)
    language = CharField(max_lenght=100, unique=True)

1 Answer

Ryan S
Ryan S
27,276 Points

Hey Thomas,

Just a couple small typos. You misspelled "length" in the max_length attribute. Got the 't' and 'h' switched around.