27 lines
477 B
PHP
27 lines
477 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class HotelModel extends Model
|
|
{
|
|
protected $table = 'm_hotels';
|
|
protected $primaryKey = 'hotel_id';
|
|
|
|
protected $allowedFields = [
|
|
'hotel_name',
|
|
'hotel_chain',
|
|
'country_code',
|
|
'category',
|
|
'city',
|
|
'is_active',
|
|
'created_on',
|
|
'created_by',
|
|
'updated_on',
|
|
'updated_by'
|
|
];
|
|
|
|
protected $useTimestamps = false;
|
|
}
|