You are here

function recipe_update_6103 in Recipe 7.2

Same name and namespace in other branches
  1. 6 recipe.install \recipe_update_6103()
  2. 7 recipe.install \recipe_update_6103()

Adds yield_unit column to the recipe table.

File

./recipe.install, line 265
Install, update and uninstall functions for the recipe module.

Code

function recipe_update_6103() {
  db_add_field('recipe', 'yield_unit', array(
    'type' => 'varchar',
    'length' => 64,
    'not null' => TRUE,
    'default' => '',
  ));
}