add open position system
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user