nhance/app/Models/MotorMasterAddonAgeLimitModel.php

18 lines
445 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class MotorMasterAddonAgeLimitModel extends Model
{
protected $table = 'motor_master_addon_age_limit';
protected $primaryKey = 'id';
protected $returnType = 'array';
protected $protectFields = true;
protected $allowedFields = [
'addon_name', 'age_limit_4w', 'age_limit_2w', 'is_active', 'imported_at',
];
protected $useTimestamps = false;
}