forked from mahdahar/crm-summit
11 lines
302 B
PHP
11 lines
302 B
PHP
|
|
<?php namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class BugsModel extends Model {
|
||
|
|
protected $table = 'bugs';
|
||
|
|
protected $primaryKey = 'bugid';
|
||
|
|
protected $allowedFields = [
|
||
|
|
'bugtitle', 'bugstatus', 'bugdetail', 'bugpriority', 'userid_creator', 'userid_closer', 'reportdate', 'closedate',
|
||
|
|
];
|
||
|
|
}
|