golf_backend/app/Models/Country_model.php
suseendhiran17 bc4e1f54dd susee
2023-06-14 12:17:22 +05:30

13 lines
208 B
PHP

<?php namespace App\Models;
use CodeIgniter\Model;
class Country_model extends Model
{
protected $table = 'country';
protected $primaryKey = 'id';
protected $allowedFields = ['name'];
}