fix certificates

This commit is contained in:
root
2026-05-26 01:44:57 -04:00
parent 4ae62e37a3
commit 0bf8d13777
15 changed files with 2533 additions and 446 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace App\Models;
use CodeIgniter\Model;
class StudentDecisionModel extends Model
{
protected $table = 'student_decisions';
protected $primaryKey = 'id';
protected $allowedFields = [
'student_id',
'semester',
'school_year',
'class_section_name',
'semester_score',
'decision',
'source',
'notes',
'generated_by',
];
protected $useTimestamps = true;
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
}