24 lines
471 B
PHP
24 lines
471 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class RegisterModel extends Model
|
|
{
|
|
protected $table = 'register_ambulans';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = [
|
|
'rm',
|
|
'register',
|
|
'order_type',
|
|
'status',
|
|
'fase',
|
|
'prioritas'
|
|
];
|
|
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
} |