Files
alrahma_sunday_school/app/Models/JobTemplateVersionModel.php
root 6936a822c8
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 49s
Tests / PHPUnit (push) Successful in 1m23s
reconstruct job admin side
2026-09-03 01:58:54 -04:00

29 lines
613 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class JobTemplateVersionModel extends Model
{
protected $table = 'job_template_versions';
protected $primaryKey = 'version_id';
protected $useAutoIncrement = false;
protected $returnType = 'array';
protected $allowedFields = [
'version_id',
'template_id',
'version',
'title',
'description',
'department',
'location',
'employment_type',
'responsibilities',
'requirements',
'saved_by',
'saved_at',
];
protected $useTimestamps = false;
}