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
You can use CURRENT_TIMESTAMP default value for created field in your MySQL table and set
created
public $timestamps = false;
in your model.