2024-04-24 13:20:52 +07:00
|
|
|
<?php namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
|
|
|
|
|
|
class ActivitiesModel extends Model {
|
|
|
|
|
protected $table = 'activities';
|
|
|
|
|
protected $primaryKey = 'actid';
|
|
|
|
|
protected $allowedFields = [
|
2026-02-05 10:30:48 +07:00
|
|
|
'actid_ref', 'acttypeid', 'subject', 'actby', 'productid', 'siteid', 'vendorid',
|
2024-04-24 13:20:52 +07:00
|
|
|
'contactid', 'media', 'action', 'swversion',
|
|
|
|
|
'userid_creator', 'userid_owner', 'reportfrom', 'reportdate',
|
|
|
|
|
'opendate', 'closedate', 'activitystatus', 'attachment'
|
|
|
|
|
];
|
|
|
|
|
}
|