You are here

function registration_update_7101 in Entity Registration 7.2

Same name and namespace in other branches
  1. 8 registration.install \registration_update_7101()
  2. 7 registration.install \registration_update_7101()

Remove entity_id_entity_type_user unique index from registration.

File

./registration.install, line 526
Schema and installation hooks for registration module.

Code

function registration_update_7101(&$sandbox) {
  db_drop_index('registration', 'entity_id_entity_type_user');
}