10 lines
390 B
PHP
10 lines
390 B
PHP
|
|
<?php namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class ProductsLogModel extends Model {
|
||
|
|
protected $table = 'products_log';
|
||
|
|
protected $primaryKey = 'productlogid';
|
||
|
|
protected $allowedFields = [ 'productid', 'catalogid', 'siteid', 'locationstartdate', 'locationenddate',
|
||
|
|
'installationdate', 'warrantystartdate', 'warrantyenddate', 'productowner', 'productserviceid', 'logdate' ];
|
||
|
|
}
|