You are here

function guestbook_update_3 in Guestbook 5

File

./guestbook.install, line 77

Code

function guestbook_update_3() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
    case 'pgsql':
      $ret[] = update_sql('CREATE INDEX guestbook_author ON {guestbook}(author)');
      $ret[] = update_sql('CREATE INDEX guestbook_commentauthor ON {guestbook}(commentauthor)');
      $ret[] = update_sql('CREATE INDEX guestbook_created ON {guestbook}(created)');
      break;
  }
  return $ret;
}