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

20 lines
384 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class ClassPreparationLogModel extends Model
{
protected $table = 'class_preparation_log';
protected $primaryKey = 'id';
protected $allowedFields = [
'class_section_id',
'class_section',
'school_year',
'prep_data',
'created_at',
];
public $useTimestamps = false;
}