Files
alrahma_sunday_school/app/Models/StudentAssessmentModel.php
T
root b5e719382d
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 49s
Tests / PHPUnit (push) Successful in 1m36s
add assessment feature
2026-09-10 06:44:24 -04:00

15 lines
431 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class StudentAssessmentModel extends Model
{
protected $table = 'student_assessments';
protected $primaryKey = 'id';
protected $returnType = 'array';
protected $allowedFields = ['form_id', 'student_id', 'status', 'assigned_at', 'started_at', 'submitted_at', 'graded_at', 'graded_by', 'score', 'education_committee_note'];
protected $useTimestamps = true;
}