forked from mahdahar/crm-summit
14 lines
451 B
PHP
14 lines
451 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ActivitiesModel extends Model {
|
|
protected $table = 'activities';
|
|
protected $primaryKey = 'actid';
|
|
protected $allowedFields = [
|
|
'ref_actid', 'acttypeid', 'subject', 'actby', 'productid', 'siteid', 'vendorid',
|
|
'contactid', 'media', 'action', 'swversion',
|
|
'userid_creator', 'userid_owner', 'reportfrom', 'reportdate',
|
|
'opendate', 'closedate', 'activitystatus', 'attachment'
|
|
];
|
|
} |