You are here

function quotes_update_4 in Quotes 5

Implementation of hook_update_N(). Removes the title column and adds the additional fields to quotes_blocks to support cron.

File

./quotes.install, line 206
Handles installation and updates for the quotes module.

Code

function quotes_update_4() {
  global $db_type;
  $items = array();
  $items[] = update_sql('ALTER TABLE {quotes} ADD COLUMN title');
  return $items;
}