Files
2026-05-16 13:44:12 -04:00

26 lines
489 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class PlacementScoreModel extends Model
{
protected $table = 'placement_scores';
protected $primaryKey = 'id';
protected $allowedFields = [
'batch_id',
'student_id',
'score',
'created_by',
'updated_by',
'created_at',
'updated_at',
];
protected $useTimestamps = true;
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
}