You are here

function customfilter_update_6116 in Custom filter 7

Same name and namespace in other branches
  1. 6 customfilter.install \customfilter_update_6116()
  2. 7.2 customfilter.install \customfilter_update_6116()

Implements hook_update_N().

1 string reference to 'customfilter_update_6116'
customfilter_update_6119 in ./customfilter.install
Implements hook_update_N().

File

./customfilter.install, line 491
Installation file for Custom filter.

Code

function customfilter_update_6116() {
  $ret = array();
  if (!variable_get('customfilter_update_6116', FALSE)) {
    db_add_index('customfilter_rule', 'customfilter_rule_prid', array(
      'prid',
    ));
    variable_set('customfilter_update_6116', TRUE);
  }

  // hook_update_N() no longer returns a $ret array. Instead, return
  // nothing or a translated string indicating the update ran successfully.
  // See http://drupal.org/node/224333#update_sql.
  return t('TODO Add a descriptive string here to show in the UI.');
}