23 lines
433 B
PHP
Executable File
23 lines
433 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PolicyGridModel extends Model
|
|
{
|
|
protected $table = 'policy_grid_master';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'id',
|
|
'policy_grid_type',
|
|
'is_dependent_allowed',
|
|
'max_dependent_age',
|
|
'max_dependent_count',
|
|
"created_by",
|
|
"updated_by",
|
|
'is_active',
|
|
];
|
|
|
|
}
|