24 lines
405 B
PHP
Executable File
24 lines
405 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class RelationshipModel extends Model
|
|
{
|
|
protected $table = 'relationships';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
"id",
|
|
"insurer_id",
|
|
"relationship_name",
|
|
"dependent",
|
|
"is_multiple",
|
|
"created_by",
|
|
"created_at",
|
|
"updated_by",
|
|
"updated_at",
|
|
"is_active",];
|
|
|
|
}
|