35 lines
734 B
PHP
35 lines
734 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class HrFileUploadModel extends Model
|
|
{
|
|
protected $table = 'hr_file_upload';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
|
|
// Allowed fields
|
|
protected $allowedFields = [
|
|
'client_id',
|
|
'client_branch_id',
|
|
'policy_no',
|
|
'file_name',
|
|
'file_action',
|
|
'status',
|
|
'created_by',
|
|
'created_at',
|
|
'updated_by',
|
|
'updated_at'
|
|
];
|
|
|
|
// Automatically set timestamps
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
|
|
// Return type
|
|
protected $returnType = 'array';
|
|
}
|