29 lines
653 B
PHP
29 lines
653 B
PHP
<?php
|
|
|
|
namespace App\Modules\Discipline\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ViolationModel extends Model
|
|
{
|
|
protected $table = 'violations';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'category_id',
|
|
'code',
|
|
'title',
|
|
'description',
|
|
'score',
|
|
'is_active',
|
|
];
|
|
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
}
|
|
|