Files
root dbfd72c2f9
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 48s
Tests / PHPUnit (push) Successful in 1m29s
add open position system
2026-09-02 00:53:55 -04:00

27 lines
554 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class ApplicationModel extends Model
{
protected $table = 'applications';
protected $primaryKey = 'application_id';
protected $useAutoIncrement = false;
protected $returnType = 'array';
protected $allowedFields = [
'application_id',
'position_id',
'first_name',
'last_name',
'email',
'phone',
'resume_file_url',
'status',
'admin_notes',
'submitted_at',
];
protected $useTimestamps = false;
}