forked from mahdahar/crm-summit
12 lines
301 B
PHP
12 lines
301 B
PHP
|
|
<?php namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class SiteContactModel extends Model {
|
||
|
|
protected $table = 'sitecontact';
|
||
|
|
protected $primaryKey = 'sitecontactid';
|
||
|
|
protected $allowedFields = [
|
||
|
|
'siteid', 'contactid', 'contactemail', 'jobtitle', 'department',
|
||
|
|
'createdate', 'enddate'
|
||
|
|
];
|
||
|
|
}
|