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

27 lines
641 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class ExamModel extends Model
{
protected $table = 'exams';
protected $primaryKey = 'id';
protected $useAutoIncrement = true;
protected $allowedFields = [
'student_id',
'school_id',
'class_section_id',
'exam_name',
'created_at'
];
// Timestamps
protected $useTimestamps = true;
protected $createdField = 'created_at';
protected $updatedField = ''; // Set this if you later add an `updated_at` column
protected $returnType = 'array'; // You can change this to 'object' if preferred
}