You are here

function nodewords_update_6154 in Nodewords: D6 Meta Tags 6

Implements hook_update_N().

File

./nodewords.install, line 1082
Installation file for nodewords.module.

Code

function nodewords_update_6154() {
  $ret = array();
  db_change_field($ret, 'nodewords_custom', 'name', 'name', array(
    'type' => 'varchar',
    'length' => 60,
    'not null' => TRUE,
    'default' => '',
  ));
  db_change_field($ret, 'nodewords_custom', 'path', 'path', array(
    'type' => 'text',
    'size' => 'medium',
    'not null' => TRUE,
  ));
  return $ret;
}