You are here

function uc_quote_update_7 in Ubercart 5

File

shipping/uc_quote/uc_quote.install, line 251

Code

function uc_quote_update_7() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      $ret[] = update_sql("ALTER TABLE {uc_order_quotes} SET WITHOUT OIDS");
      break;
  }
  return $ret;
}