You are here

function uc_attribute_update_6006 in Ubercart 6.2

Add index to attribute options table.

File

uc_attribute/uc_attribute.install, line 543
Install hooks for uc_attribute.module.

Code

function uc_attribute_update_6006() {
  $ret = array();
  db_add_index($ret, 'uc_attribute_options', 'aid', array(
    'aid',
  ));
  return $ret;
}