Skip to content

Commit

Permalink
Fix salesagility#10539 - Indexes lacking in securitygroups_acl_roles
Browse files Browse the repository at this point in the history
  • Loading branch information
SinergiaCRM committed Oct 4, 2024
1 parent 80ee82d commit fa15bca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion metadata/securitygroups_acl_rolesMetaData.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
, array('name' =>'deleted', 'type' =>'bool', 'len'=>'1', 'required'=>true, 'default'=>'0')
),
'indices' => array(
array('name' =>'securitygroups_acl_rolespk', 'type' =>'primary', 'fields'=>array('id'))
array('name' =>'securitygroups_acl_rolespk', 'type' =>'primary', 'fields'=>array('id')),
array('name' => 'idx_SG_roles', 'type' => 'index', 'fields' => array('securitygroup_id', 'role_id')),
),
'relationships' => array(

Expand Down

0 comments on commit fa15bca

Please sign in to comment.