22 lines
430 B
PHP
22 lines
430 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class RoleMasterModel extends Model
|
|
{
|
|
protected $table = 'partner_role_master';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'role',
|
|
'is_active',
|
|
'created_by',
|
|
'created_on',
|
|
'updated_by',
|
|
'updated_on'
|
|
];
|
|
|
|
protected $useTimestamps = false; // we handle timestamps manually
|
|
}
|