Newer
Older
framework / _support / Models / SecondaryModel.php
@Jim Parry Jim Parry on 4 Apr 2019 332 bytes Release 4.0.0-beta.2
<?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 = 'integer';

	protected $allowedFields = [
		'key',
		'value',
	];
}