function corresponding_node_references_update_6400 in Corresponding node references 6.4
Add a new field to the database table allows single nodereferences
File
- ./
corresponding_node_references.install, line 62
Code
function corresponding_node_references_update_6400() {
$ret = array();
if (db_table_exists('corresponding_node_references')) {
db_drop_field($ret, 'corresponding_node_references', 'single');
db_drop_field($ret, 'corresponding_node_references', 'single2');
}
return $ret;
}