You are here

function shorten_update_6101 in Shorten URLs 6

Implementation of hook_update_N().

File

./shorten.install, line 76
(Un)installs the Shorten module.

Code

function shorten_update_6101() {
  $ret = array();
  $schema = drupal_get_schema_unprocessed('system', 'cache');
  db_create_table($ret, 'cache_shorten', $schema);
  return $ret;
}