24 lines
470 B
PHP
24 lines
470 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class SchoolYearTransitionLogModel extends Model
|
|
{
|
|
protected $table = 'school_year_transition_logs';
|
|
protected $primaryKey = 'id';
|
|
protected $returnType = 'array';
|
|
protected $useTimestamps = false;
|
|
|
|
protected $allowedFields = [
|
|
'school_year_id',
|
|
'from_status',
|
|
'to_status',
|
|
'action',
|
|
'performed_by',
|
|
'metadata_json',
|
|
'created_at',
|
|
];
|
|
}
|