You are here

function power_menu_update_6003 in Power Menu 6

update. Add the properties table

File

./power_menu.install, line 133
just containing the stuff for install and uninstall

Code

function power_menu_update_6003() {
  $ret = array();
  $schema = power_menu_schema();
  $table = drupal_get_schema_unprocessed('system', 'cache');
  db_create_table($ret, 'power_menu_properties', $schema['power_menu_properties']);
  return $ret;
}