26 lines
530 B
PHP
26 lines
530 B
PHP
<?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',
|
|
];
|
|
}
|