I want only use created_at , how to do it?
I know:
This can custom timestamps name
const CREATED_AT = \'created\'; const UPDATED_AT = \'updat
I used very simple hack ;)
class MyClass extends Model {
const CREATED_AT = 'creation_date'; const UPDATED_AT = 'creation_date';
}
I just pointed both to the same column :)