function redhen_contact_update_7003 in RedHen CRM 7
Create indexes for foreign keys.
File
- modules/
redhen_contact/ redhen_contact.install, line 341 - Schema and installation hooks for redhen_contact module.
Code
function redhen_contact_update_7003() {
db_add_index('redhen_contact', 'redhen_contact_revision', array(
'revision_id',
));
db_add_index('redhen_contact_user', 'redhen_contact_user_contact', array(
'contact_id',
));
db_add_index('redhen_contact_user', 'redhen_contact_user_user', array(
'uid',
));
}