mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 15:37:57 +00:00
24 lines
1.1 KiB
PHP
24 lines
1.1 KiB
PHP
<?php
|
|
$dictionary['securitygroups_acl_roles'] = array(
|
|
'table' => 'securitygroups_acl_roles',
|
|
'fields' => array(
|
|
array('name' =>'id', 'type' =>'char', 'len'=>'36', 'required'=>true, 'default'=>'')
|
|
, array('name' =>'securitygroup_id', 'type' =>'char', 'len'=>'36')
|
|
, array('name' =>'role_id', 'type' =>'char', 'len'=>'36')
|
|
, array('name' =>'date_modified','type' => 'datetime')
|
|
, array('name' =>'deleted', 'type' =>'bool', 'len'=>'1', 'required'=>true, 'default'=>'0')
|
|
),
|
|
'indices' => array(
|
|
array('name' =>'securitygroups_acl_rolespk', 'type' =>'primary', 'fields'=>array('id'))
|
|
),
|
|
'relationships' => array(
|
|
|
|
'securitygroups_acl_roles' => array(
|
|
'lhs_module'=> 'SecurityGroups', 'lhs_table'=> 'securitygroups', 'lhs_key' => 'id',
|
|
'rhs_module'=> 'ACLRoles', 'rhs_table'=> 'acl_roles', 'rhs_key' => 'id',
|
|
'relationship_type'=>'many-to-many',
|
|
'join_table'=> 'securitygroups_acl_roles', 'join_key_lhs'=>'securitygroup_id', 'join_key_rhs'=>'role_id',
|
|
),
|
|
)
|
|
);
|