27 lines
527 B
PHP
27 lines
527 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class StudentDecisionModel extends Model
|
|
{
|
|
protected $table = 'student_decisions';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = [
|
|
'student_id',
|
|
'school_year',
|
|
'class_section_name',
|
|
'year_score',
|
|
'decision',
|
|
'source',
|
|
'notes',
|
|
'generated_by',
|
|
];
|
|
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
}
|