clqms-be/app/Models/OccupationModel.php

12 lines
245 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class OccupationModel extends Model {
protected $table = 'occupation';
protected $primaryKey = 'OccupationID';
protected $allowedFields = ['AbbTex', 'FullText', 'Description'];
}