You are here

function quotes_update_1 in Quotes 5

Implementation of hook_update_N(). Updates existing tables to UTF-8.

File

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

Code

function quotes_update_1() {
  return _system_update_utf8(array(
    'quotes',
    'quotes_blocks',
  ));
}