22 lines
621 B
PHP
22 lines
621 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class MotorKycModel extends Model
|
|
{
|
|
protected $table = 'motor_kyc';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'quote_id', 'kyc_id', 'kyc_verification_status', 'reference_id', 'link',
|
|
'mismatch_type', 'id_verification_doc_type', 'address_verification_doc_type',
|
|
'mode', 'checked_at',
|
|
];
|
|
protected $useTimestamps = false;
|
|
}
|