You are here

function hosting_web_server_update_1 in Hosting 7.4

Same name and namespace in other branches
  1. 5 web_server/hosting_web_server.install \hosting_web_server_update_1()
  2. 6.2 web_server/hosting_web_server.install \hosting_web_server_update_1()
  3. 7.3 web_server/hosting_web_server.install \hosting_web_server_update_1()

Implements hook_update_N().

Add package description to hosting_package table.

File

web_server/hosting_web_server.install, line 13
Update functions for the hosting_web_server module.

Code

function hosting_web_server_update_1() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {hosting_web_server} ADD COLUMN drush_path longtext NOT NULL default ''");
  return $ret;
}