Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.