You are here

function hosting_web_server_update_1 in Hosting 6.2

Same name and namespace in other branches
  1. 5 web_server/hosting_web_server.install \hosting_web_server_update_1()
  2. 7.4 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()

Add package description to hosting_package table

File

web_server/hosting_web_server.install, line 6

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;
}