function og_menu_update_7306 in Organic Groups Menu (OG Menu) 7.3
Add og_menu.(gid, group_type, weight) index.
File
- ./
og_menu.install, line 260 - Install, update and uninstall functions for the og_menu module.
Code
function og_menu_update_7306() {
if (!db_index_exists('og_menu', 'gid_group_type_weight')) {
db_add_index('og_menu', 'gid_group_type_weight', array(
'gid',
'group_type',
'weight',
));
}
}