timestamps method
void
timestamps()
Add timestamp columns
Adds created_at and updated_at columns for tracking record creation and modification times.
Implementation
void timestamps() {
_columns['created_at'] = " created_at DATETIME NULL,";
_columns['updated_at'] = " updated_at DATETIME NULL,";
}