Files
rpsls-game/tests/_support/Models/SecondaryModel.php
2019-12-02 14:56:47 -06:00

22 lines
328 B
PHP

<?php namespace Tests\Support\Models;
use CodeIgniter\Model;
class SecondaryModel extends Model
{
protected $table = 'secondary';
protected $primaryKey = 'id';
protected $returnType = 'object';
protected $useSoftDeletes = false;
protected $dateFormat = 'int';
protected $allowedFields = [
'key',
'value',
];
}