Hi
I need some help with a simple thing ,
My DB is defined this way :
db.define_table('test',
Field('message'),
Field('date',datetime),
)
I would like to ensure that when the form is created with form =
crud.create('test') , that when i submit my form the timestamp is
updated with the insert time not the generated one at crud.create time
( we can have minutes between these two ).
Thx

