function nodewords_update_6150 in Nodewords: D6 Meta Tags 6
Implements hook_update_N().
File
- ./
nodewords.install, line 980 - Installation file for nodewords.module.
Code
function nodewords_update_6150() {
$ret = array();
if (!db_column_exists('nodewords_custom', 'name')) {
db_add_field($ret, 'nodewords_custom', 'name', array(
'type' => 'text',
'size' => 'medium',
'not null' => TRUE,
));
}
return $ret;
}