27 lines
440 B
PHP
Executable File
27 lines
440 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class FileModel extends Model
|
|
{
|
|
protected $table = 'files';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"file_name",
|
|
"created_by",
|
|
"is_active",
|
|
"status",
|
|
"reason",
|
|
"action",
|
|
"client_id",
|
|
"policy_id",
|
|
"client_branch_id",
|
|
"uploaded_by"
|
|
];
|
|
|
|
|
|
}
|