22 lines
405 B
PHP
22 lines
405 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class AuditHistoryModel extends Model
|
|
{
|
|
protected $table = 'auditing_history';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"pk",
|
|
"table_name",
|
|
"field_name",
|
|
"old_value",
|
|
"new_value",
|
|
"created_by",
|
|
"created_at",
|
|
];
|
|
|
|
}
|
|
?>
|