10 lines
329 B
PHP
Executable File
10 lines
329 B
PHP
Executable File
<?php
|
|
namespace App\Models;
|
|
use CodeIgniter\Model;
|
|
class JobcardFileModel extends Model
|
|
{
|
|
protected $table = 'job_card_file';
|
|
protected $primaryKey = 'file_id';
|
|
protected $allowedFields = ['file_id','file_name','job_card_id','manual_file_name', 'created_at','created_by','updated_at','updated_by','isactive'];
|
|
|
|
} |