You are here

function system_update_184 in Drupal 4

File

database/updates.inc, line 2030

Code

function system_update_184() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {access} CHANGE aid aid int(10) NOT NULL AUTO_INCREMENT ");
      $ret[] = update_sql("ALTER TABLE {boxes} CHANGE bid bid int NOT NULL AUTO_INCREMENT ");
      break;
    case 'pgsql':
  }
  return $ret;
}