function quotes_update_5 in Quotes 5
Implementation of hook_update_N(). Add citation column to quotes table
File
- ./
quotes.install, line 220 - Handles installation and updates for the quotes module.
Code
function quotes_update_5() {
global $db_type;
$items = array();
$items[] = update_sql('ALTER TABLE {quotes} ADD citation VARCHAR(255)');
return $items;
}