Files
alrahma_sunday_school/app/Models/CurrentFlagModel.php
T
2026-05-16 13:44:12 -04:00

35 lines
678 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class CurrentFlagModel extends Model
{
protected $table = 'current_flag';
protected $primaryKey = 'id';
protected $allowedFields = [
'student_id',
'student_name',
'grade',
'flag',
'flag_datetime',
'flag_state',
'updated_by_open',
'open_description',
'updated_by_closed',
'close_description',
'action_taken',
'updated_by_canceled',
'cancel_description',
'semester',
'school_year',
'created_at',
'updated_at'
];
// Fields that are allowed to be inserted or updated
}