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

28 lines
545 B
PHP

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