21 lines
580 B
PHP
21 lines
580 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class MotorApiLogModel extends Model
|
|
{
|
|
protected $table = 'motor_api_log';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'quote_id', 'integration_id', 'endpoint', 'request_body', 'response_body',
|
|
'http_status', 'error_code', 'duration_ms', 'created_at',
|
|
];
|
|
protected $useTimestamps = false;
|
|
}
|