fix financial and certificates

This commit is contained in:
root
2026-06-05 01:51:08 -04:00
parent d28d11e2e5
commit ad968eaff7
94 changed files with 9654 additions and 214 deletions
+9 -1
View File
@@ -23,6 +23,11 @@ class Project extends BaseModel
'updated_by',
'project_index',
'score',
'max_points',
'status',
'excused_reason',
'locked_at',
'locked_by',
'comment',
'semester',
'school_year',
@@ -45,7 +50,10 @@ class Project extends BaseModel
'class_section_id' => 'integer',
'updated_by' => 'integer',
'project_index' => 'integer',
'score' => 'decimal:2', // or 'float' if you prefer
'score' => 'decimal:2',
'max_points' => 'decimal:2',
'locked_by' => 'integer',
'locked_at' => 'datetime', // or 'float' if you prefer
'created_at' => 'datetime',
'updated_at' => 'datetime',
];