hi all,
I like to use table inheritance with auth.signature in my model. I see that it is working, but it doesn't use utc time. So i added my own field.
1) Is this a recommended approach or there are other ways to modify auth.signature?
db.define_table('demo_detail',
Field('prototype_id', 'reference prototype',label='Prototype Title'),
Field('info','text'),
Field('storyboard', 'upload', label='Storyboard'),
Field('modified_on', 'datetime', update=request.utcnow, writable = False),
Field('created_on', 'datetime', update=request.utcnow, writable = False),
auth.signature
)
2) I can't seem to see the auth.signature table in my appadmin. Where should i modify it if needed?
Thank for your help.