11 lines
256 B
PHP
11 lines
256 B
PHP
|
|
<?php namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class BugCommentModel extends Model {
|
||
|
|
protected $table = 'bugcomment';
|
||
|
|
protected $primaryKey = 'bugcommentid';
|
||
|
|
protected $allowedFields = [
|
||
|
|
'bugcommenttext', 'userid', 'bugid', 'logdate',
|
||
|
|
];
|
||
|
|
}
|