I should first mention that I\'m using SqlAlchemy through Flask-SqlAlchemy. I don\'t believe this affects the issue but if it does, please let me know.
Here is the relev
Set the import out the class.
from datetime import datetime last_updated = db.Column(db.DateTime, default=datetime.now())
or
import datetime last_updated = db.Column(db.DateTime, default=datetime.datetime.now())
I did this