13 lines
208 B
PHP
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'];
|
|
|
|
|
|
} |