20 lines
355 B
PHP
Executable File
20 lines
355 B
PHP
Executable File
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class UserTeamsModel extends Model
|
|
{
|
|
protected $table = 'user_teams';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"user_id",
|
|
"team_id",
|
|
"created_by",
|
|
"updated_by",
|
|
"is_active",
|
|
];
|
|
|
|
}
|
|
?>
|