Sie könnten es auf NULL
setzen falls es leer ist, wie:
$company_phone = $this->input->post('company_phone');
...
'company_phone' => (!empty($company_phone)) ? $company_phone : NULL,
...
Sie könnten es auf NULL
setzen falls es leer ist, wie:
$company_phone = $this->input->post('company_phone');
...
'company_phone' => (!empty($company_phone)) ? $company_phone : NULL,
...