I'm developing an app with web2py and have this custom registration form in my db.py file
db.define_table(
auth.settings.table_user_name,
Field('email', length=128, default=''),
Field('password', 'password', length=512, readable=False),
Field('password_verify', 'password', length=512, readable=False),
Field('registration_time', 'datetime', default=now),
Field('registration_key', length=512, writable=False, readable=False, default=''),
Field('registration_id', length=512, writable=False, readable=False, default='')
)
for the fourth field, registration_time, I'd like to store the utcnow() time (as the website will be pretty international I think it's a safer idea to go with utcnow() rather than simply now() )
I've set the variable
now = datetime.datetime.utcnow()
in my db.py file as well.
My question is, I cannot get the datetime field to return anything but None upon a new registration. What gives??
Any suggestions are appreciated! Many thanks :D