You are here

function nodewords_update_6115 in Nodewords: D6 Meta Tags 6.2

Same name and namespace in other branches
  1. 6 nodewords.install \nodewords_update_6115()

Implements hook_update_N().

File

./nodewords.install, line 463
Install, update and uninstall functions for the Nodewords module.

Code

function nodewords_update_6115() {
  $ret = array();
  if (db_column_exists('nodewords', 'weight')) {
    db_drop_field($ret, 'nodewords', 'weight');
  }
  return $ret;
}