26 lines
609 B
PHP
26 lines
609 B
PHP
<?php
|
|
|
|
namespace App\Modules\Discipline\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ViolationCategoryModel extends Model
|
|
{
|
|
protected $table = 'violation_categories';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'code',
|
|
'name',
|
|
'description',
|
|
];
|
|
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
}
|
|
|