Files
jongryangje/app/Models/LocalGovernmentModel.php

24 lines
449 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models;
use CodeIgniter\Model;
class LocalGovernmentModel extends Model
{
protected $table = 'local_government';
protected $primaryKey = 'lg_idx';
protected $returnType = 'object';
protected $useTimestamps = false;
protected $allowedFields = [
'lg_name',
'lg_code',
'lg_sido',
'lg_gugun',
'lg_addr',
'lg_state',
'lg_regdate',
];
}