Files
jongryangje/app/Models/PackagingUnitHistoryModel.php

18 lines
435 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use CodeIgniter\Model;
class PackagingUnitHistoryModel extends Model
{
protected $table = 'packaging_unit_history';
protected $primaryKey = 'puh_idx';
protected $returnType = 'object';
protected $useTimestamps = false;
protected $allowedFields = [
'puh_pu_idx', 'puh_field', 'puh_old_value', 'puh_new_value',
'puh_changed_at', 'puh_changed_by',
];
}