18 lines
264 B
PHP
18 lines
264 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class RoleModal extends Model
|
|
{
|
|
protected $table = 'roles';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"role",
|
|
];
|
|
|
|
|
|
|
|
}
|
|
?>
|