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 A Social Network with Flask Making Strong Users Create a User model

Tim Good
Tim Good
4,190 Points

Why 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.

models.py
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
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree seal-36
Rohald van Merode
Treehouse Staff

Hey 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
Tim Good
4,190 Points

I realized that a few minutes after submitting the question! Thanks for your help.