function recipe_update_6102 in Recipe 7.2
Same name and namespace in other branches
- 6 recipe.install \recipe_update_6102()
- 7 recipe.install \recipe_update_6102()
Adds note column to the recipe_node_ingredient table.
File
- ./
recipe.install, line 257 - Install, update and uninstall functions for the recipe module.
Code
function recipe_update_6102() {
db_add_field('recipe_node_ingredient', 'note', array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
));
}