You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
387 B
27 lines
387 B
<?php namespace Tests\Support\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class UserModel extends Model
|
|
{
|
|
protected $table = 'user';
|
|
|
|
protected $allowedFields = [
|
|
'name',
|
|
'email',
|
|
'country',
|
|
'deleted_at',
|
|
];
|
|
|
|
protected $returnType = 'object';
|
|
|
|
protected $useSoftDeletes = true;
|
|
|
|
protected $dateFormat = 'datetime';
|
|
|
|
public $name = '';
|
|
|
|
public $email = '';
|
|
|
|
public $country = '';
|
|
}
|
|
|