Hello.
I included this function on your model, it works for MYSQL version 5.x
It fetch the primary key, without have to change it, I call it on __construct
private function _fetch_pkey()
{
if ($this->table !== NULL)
{
$_table_data = $this->db->query('SHOW KEYS FROM `'. $this->table .'`')->row();
$this->primary_key = $_table_data->Column_name;
}
}