You are here

function simplenews_update_6003 in Simplenews 6.2

Same name and namespace in other branches
  1. 6 simplenews.install \simplenews_update_6003()

Addition of index to uid in simplenews_subscriptions.

File

./simplenews.install, line 549
Simplenews installation.

Code

function simplenews_update_6003() {
  $ret = array();
  db_add_index($ret, 'simplenews_subscriptions', 'uid', array(
    'uid',
  ));
  return $ret;
}