I have table:
class Model(Base):
__tablename__ = 'model'
id = Column(Integer,primary_key=True)
last_web_change_time = Column(DateTime, nullable=False,
default=time.asctime(time.localtime()))
name = Column(String)
When I update Model.name field, last_web_change_time didn't fill automatically
( is null ). Why ?
--
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en.