16 lines
510 B
PHP
16 lines
510 B
PHP
<?php
|
||
|
||
namespace App\Models;
|
||
|
||
use CodeIgniter\Model;
|
||
|
||
class OrganizationUserModel extends Model
|
||
{
|
||
protected $table = 'organization_users';
|
||
protected $primaryKey = 'id';
|
||
protected $useAutoIncrement = true;
|
||
protected $returnType = 'array';
|
||
protected $allowedFields = ['organization_id', 'user_id', 'role', 'status', 'joined_at'];
|
||
|
||
protected $useTimestamps = false; // У нас есть только created_at, можно настроить вручную
|
||
} |