This commit is contained in:
@@ -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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user