You are here

function hosting_server_update_6000 in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 server/hosting_server.install \hosting_server_update_6000()
  2. 7.3 server/hosting_server.install \hosting_server_update_6000()

Implements hook_update_N().

File

server/hosting_server.install, line 124
Define the database schema and update functions for the hosting_server module.

Code

function hosting_server_update_6000() {
  $return = array();
  db_add_index($return, 'hosting_service', 'vid', array(
    'vid',
  ));
  return $return;
}