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 trialTim Good
6,021 PointsWhy does it keep telling me that; 'DateTimeField' is not defined.
My code looks good as far as I can tell. I'm pretty sure its correct but I'm not sure how else to define DateTimeField.
from peewee import *
import datetime
class User(Model):
email = CharField(unique=True)
password = CharField(max_length=100)
join_date = DateTimeFIeld(default=datetime.datetime.now)
bio = TextField(default="")
1 Answer
Rohald van Merode
Treehouse StaffHey Tim Good 👋
You'll want to have another close look at how you spelled DateTimeField
looks like the i
in Field is uppercased which causes it to come up as undefined 🙂
Hope this helps! Happy Coding 🧑💻
Tim Good
6,021 PointsTim Good
6,021 PointsI realized that a few minutes after submitting the question! Thanks for your help.