You are here

function og_menu_update_7305 in Organic Groups Menu (OG Menu) 7.3

Add weight field to og_menu table.

File

./og_menu.install, line 245
Install, update and uninstall functions for the og_menu module.

Code

function og_menu_update_7305(&$sandbox) {
  if (!db_field_exists('og_menu', 'weight')) {
    db_add_field('og_menu', 'weight', array(
      'description' => "The menu weight for each group menu.",
      'type' => 'int',
      'length' => '11',
      'not null' => TRUE,
      'default' => 0,
    ));
  }
}