9 lines
260 B
PHP
9 lines
260 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class MailgroupsModel extends Model {
|
|
protected $table = 'mailgroups';
|
|
protected $primaryKey = 'mailgroupid';
|
|
protected $allowedFields = [ 'mailgroupname', 'mailgrouptext', 'createdate', 'enddate' ];
|
|
} |