24 lines
500 B
PHP
24 lines
500 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class TeacherSubmissionNotificationHistoryModel extends Model
|
|
{
|
|
protected $table = 'teacher_submission_notification_history';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'teacher_id',
|
|
'class_section_id',
|
|
'admin_id',
|
|
'notification_category',
|
|
'message',
|
|
'status',
|
|
'school_year',
|
|
'semester',
|
|
'sent_at',
|
|
];
|
|
protected $useTimestamps = false;
|
|
}
|