25 lines
480 B
PHP
Executable File
25 lines
480 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PlacementBatchModel extends Model
|
|
{
|
|
protected $table = 'placement_batches';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = [
|
|
'placement_test',
|
|
'school_year',
|
|
'created_by',
|
|
'updated_by',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
}
|