Frontend property is added in application\controllers\ frontend.php, line around 1181, code:
$this->estate_m->save_dynamic( $dynamic_data, $insert_id);
$this->estate_m->save_dynamic(
After that you can execute your query, something like:
$this->db->where('id',
$user->id);
$this->db->update('user', array('type' => 'AGENT'));
More details: http://www.codeigniter.com/