24 lines
462 B
PHP
24 lines
462 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class IGRRemarks_model extends Model
|
|
{
|
|
protected $table = 't_igr_remarkes';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = [
|
|
'igr_no',
|
|
'remark',
|
|
'remark_by',
|
|
];
|
|
|
|
protected $useTimestamps = false;
|
|
protected $createdField = 'remark_on';
|
|
protected $updatedField = null; // Disable updated_at column explicitly
|
|
|
|
|
|
}
|