First Local Commit - After Clean up.
Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
21
tests/_support/Models/SecondaryModel.php
Normal file
21
tests/_support/Models/SecondaryModel.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user