27 lines
522 B
PHP
27 lines
522 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class SalesExecutiveModel extends Model
|
|
{
|
|
protected $table = 'partner_sales_executive';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = [
|
|
'name',
|
|
'email',
|
|
'mobile',
|
|
'address',
|
|
'manager_id',
|
|
'is_active',
|
|
'created_by',
|
|
'created_on',
|
|
'updated_by',
|
|
'updated_on'
|
|
];
|
|
|
|
protected $useTimestamps = false; // you are manually handling timestamps
|
|
}
|