add assessment feature
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 49s
Tests / PHPUnit (push) Successful in 1m36s

This commit is contained in:
root
2026-09-10 06:44:24 -04:00
parent ac19226bf0
commit b5e719382d
31 changed files with 1712 additions and 65 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use CodeIgniter\Model;
class StudentAnswerModel extends Model
{
protected $table = 'student_answers';
protected $primaryKey = 'id';
protected $returnType = 'array';
protected $allowedFields = ['student_assessment_id', 'question_id', 'answer_value', 'is_correct', 'points_awarded'];
protected $useTimestamps = true;
}