You are here

function uc_roles_update_6001 in Ubercart 6.2

File

uc_roles/uc_roles.install, line 199
Install, update and uninstall functions for the uc_roles module.

Code

function uc_roles_update_6001() {
  $ret = array();
  db_drop_index($ret, 'uc_roles_products', 'pfid');
  db_add_primary_key($ret, 'uc_roles_products', array(
    'pfid',
  ));
  return $ret;
}