fix enrollment for the new school-year
Tests / PHPUnit (push) Successful in 1m26s

This commit is contained in:
root
2026-08-07 23:43:31 -04:00
parent b6f3b14e7b
commit 1ef2800f12
66 changed files with 8997 additions and 498 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace App\Models;
use CodeIgniter\Model;
class EnrollmentFlagModel extends Model
{
protected $table = 'enrollment_flags';
protected $primaryKey = 'id';
protected $returnType = 'array';
protected $useTimestamps = false;
protected $allowedFields = [
'flag_type',
'student_id',
'school_year',
'source_school_year',
'status',
'priority',
'assigned_to',
'details_json',
'created_at',
'resolved_at',
'resolution_notes',
];
}