nhance_partner_be/app/Models/StaffModel.php

28 lines
547 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class StaffModel extends Model
{
protected $table = 'partner_staff';
protected $primaryKey = 'id';
protected $allowedFields = [
'name',
'email',
'mobile',
'emp_id',
'role_id',
'manager_id',
'email_otp',
'is_active',
'created_by',
'created_on',
'updated_by',
'updated_on'
];
protected $useTimestamps = false; // we manually manage created_on / updated_on
}