Files
alrahma_sunday_school/app/Models/EnrollmentTransitionAuditModel.php
root 1ef2800f12
Tests / PHPUnit (push) Successful in 1m26s
fix enrollment for the new school-year
2026-08-07 23:43:31 -04:00

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',
];
}