Thomas G. Willis wrote: > > Anyway, my question. I want to have columns for updateDate and > createDate. I'm sure you can guess what the functionality would be.
If you use MySQL alone you could try that:
class Contact(SQLNoneSetter, SQLJournalled, SQLObject):
date_created = DateTimeCol(default=datetime.now, notNone=True)
date_modified = Col(default=None, sqlType='TIMESTAMP')
-- W-Mark Kubacki
smime.p7s
Description: S/MIME Cryptographic Signature

