Are there any benefits using columnMap function when I don't need to change column names? In my project all column names are equal to properties.
Can I just drop columnMap function and leave it to Phalonc to generate it? Does this info stored in ModelMetadata?
/**
* Independent Column Mapping.
*/
public function columnMap() {
return array(
'id' => 'id',
'account_id' => 'account_id',
'user_id' => 'user_id',
'status_id' => 'status_id',
'title' => 'title',
'created' => 'created',
'updated' => 'updated',
);
}