23 lines
707 B
PHP
23 lines
707 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class MotorVehicleModel extends Model
|
|
{
|
|
protected $table = 'motor_vehicle';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'quote_id', 'is_vehicle_new', 'vehicle_maincode', 'license_plate_number',
|
|
'vehicle_identification_number', 'engine_number', 'manufacture_date',
|
|
'registration_date', 'registration_authority',
|
|
'idv', 'default_idv', 'minimum_idv', 'maximum_idv',
|
|
];
|
|
protected $useTimestamps = false;
|
|
}
|