This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use CodeIgniter\Model;
|
||||
|
||||
class EnrollmentTransitionAuditModel extends Model
|
||||
{
|
||||
protected $table = 'enrollment_transition_audits';
|
||||
protected $primaryKey = 'id';
|
||||
protected $returnType = 'array';
|
||||
protected $useTimestamps = false;
|
||||
|
||||
protected $allowedFields = [
|
||||
'student_id',
|
||||
'school_year',
|
||||
'source_school_year',
|
||||
'action',
|
||||
'performed_by',
|
||||
'original_values_json',
|
||||
'new_values_json',
|
||||
'reason',
|
||||
'created_at',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user