21 lines
482 B
PHP
21 lines
482 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
use App\Models\Concerns\SchoolYearAutoFillTrait;
|
|
|
|
class ClassPrepAdjustmentModel extends Model
|
|
{
|
|
use SchoolYearAutoFillTrait;
|
|
|
|
protected $table = 'class_prep_adjustments';
|
|
protected $allowedFields = [
|
|
'class_section_id', 'item_name', 'adjustment', 'adjustable', 'created_at',
|
|
'school_year',
|
|
];
|
|
protected $validationRules = [
|
|
'school_year' => 'required|string|max_length[16]',
|
|
];
|
|
|
|
}
|