forked from mahdahar/crm-summit
11 lines
277 B
PHP
11 lines
277 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class GuidebookModel extends Model {
|
|
protected $table = 'guidebooks';
|
|
protected $primaryKey = 'guideid';
|
|
protected $allowedFields = [
|
|
'guidetitle', 'guidedetail', 'guidecategory', 'userid_creator', 'createdate'
|
|
];
|
|
} |