27 lines
549 B
PHP
27 lines
549 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PartnerBrokerModel extends Model
|
|
{
|
|
protected $table = 'partner_brokers';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
|
|
protected $allowedFields = [
|
|
'name',
|
|
'short_name',
|
|
'is_active',
|
|
'created_by',
|
|
'updated_by'
|
|
];
|
|
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
}
|