You are here

function services_keyauth_update_6002 in Services 6.2

Same name and namespace in other branches
  1. 7 auth/services_keyauth/services_keyauth.install \services_keyauth_update_6002()

File

auth/services_keyauth/services_keyauth.install, line 156
Install, uninstall and update the module.

Code

function services_keyauth_update_6002() {
  $update = array();
  db_drop_primary_key($update, 'services_timestamp_nonce');
  db_add_index($update, 'services_timestamp_nonce', 'nonce', array(
    'nonce',
  ));
  return $update;
}