You are here

function og_update_6 in Organic groups 5.2

Same name and namespace in other branches
  1. 5.8 og.install \og_update_6()
  2. 5 og.install \og_update_6()
  3. 5.3 og.install \og_update_6()
  4. 5.7 og.install \og_update_6()

File

./og.install, line 230

Code

function og_update_6() {
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql('ALTER TABLE {og} ADD website varchar(255) NULL AFTER theme');
  }
  return $ret ? $ret : array();
}