2025-09-29 10:14:01 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
|
|
2025-09-29 10:56:34 +07:00
|
|
|
class OccupationModel extends Model {
|
2025-09-29 10:14:01 +07:00
|
|
|
protected $table = 'occupation';
|
|
|
|
|
protected $primaryKey = 'OccupationID';
|
|
|
|
|
protected $allowedFields = ['AbbTex', 'FullText', 'Description'];
|
|
|
|
|
}
|