crm-summit/app/Models/BugCommentModel.php
2024-04-24 13:20:52 +07:00

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',
];
}