26 lines
504 B
PHP
26 lines
504 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class ActivityLogModel extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'activity_log';
|
||
|
|
protected $primaryKey = 'al_idx';
|
||
|
|
protected $returnType = 'object';
|
||
|
|
protected $useTimestamps = false;
|
||
|
|
protected $allowedFields = [
|
||
|
|
'al_mb_idx',
|
||
|
|
'al_action',
|
||
|
|
'al_table',
|
||
|
|
'al_record_id',
|
||
|
|
'al_data_before',
|
||
|
|
'al_data_after',
|
||
|
|
'al_ip',
|
||
|
|
'al_regdate',
|
||
|
|
];
|
||
|
|
}
|