timestamps method
void
timestamps()
Adds created_at and updated_at timestamp columns.
Implementation
void timestamps() {
timestamp('created_at').defaultsTo('CURRENT_TIMESTAMP');
timestamp('updated_at').defaultsTo('CURRENT_TIMESTAMP');
}