I'm working through some of the books and all going fairly well...
But I'm just wondering why when you create a scaffold for a table why
it includes created_on/at and updated_on/at fields for the create and
edit modes ?
As these are internally updated fields they should not be exposed to
user access...
So how do I now take them out of the forms & let them create/update
themselves ?
TIA - Dave Porter
Good luck,
-Conrad
You sholdn't need them in the form at all. Those fields will be
updated automatically when you create, save, etc. on the model
object.
Scott
Have a look at the migration for the table. Yo