function recipe_update_2 in Recipe 5
Adds a field to link ingredient to corresponding node.
File
- ./
recipe.install, line 107
Code
function recipe_update_2() {
$ret = array();
$ret[] = update_sql('ALTER TABLE {recipe_ingredient} ADD link INT NOT NULL');
return $ret;
}