Could you please tell me how should I use ON DUPLICATE KEY UPDATE in codeigniter's way? I have found this similar question here How would I use ON DUPLICATE KEY UPDATE in my CodeIgniter model?. But couldn't find the exact answer.
I have tried the following but its not working
$this->db->on_duplicate_update('id');
$this->db->insert('voucher', $data);
Thanks :)