30 lines
547 B
PHP
30 lines
547 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PTFileModel extends Model
|
|
{
|
|
protected $table = 'pt_files';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
|
|
'id',
|
|
'pt_id',
|
|
'doc_name',
|
|
'file_name',
|
|
'url',
|
|
'is_active',
|
|
'created_by',
|
|
'updated_by',
|
|
|
|
];
|
|
|
|
|
|
}
|