nhance/app/Models/MotorMasterRtoModel.php

17 lines
453 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class MotorMasterRtoModel extends Model
{
protected $table = 'motor_master_rto';
protected $primaryKey = 'rto_code';
protected $returnType = 'array';
protected $useAutoIncrement = false;
protected $protectFields = true;
protected $allowedFields = ['rto_code', 'city_state', 'is_active', 'imported_at'];
protected $useTimestamps = false;
}