18 lines
425 B
PHP
18 lines
425 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class BagPriceHistoryModel extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'bag_price_history';
|
||
|
|
protected $primaryKey = 'bph_idx';
|
||
|
|
protected $returnType = 'object';
|
||
|
|
protected $useTimestamps = false;
|
||
|
|
protected $allowedFields = [
|
||
|
|
'bph_bp_idx', 'bph_field', 'bph_old_value', 'bph_new_value',
|
||
|
|
'bph_changed_at', 'bph_changed_by',
|
||
|
|
];
|
||
|
|
}
|