18 lines
341 B
PHP
18 lines
341 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class KriteriaModel extends Model
|
|
{
|
|
protected $table = 'kriteria';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $useAutoIncrement = true;
|
|
|
|
protected $allowedFields = ['nama_kriteria', 'type', 'bobot', 'created_at', 'updated_at'];
|
|
|
|
protected $useTimestamps = true;
|
|
}
|