You are here

function hosting_platform_update_6001 in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 platform/hosting_platform.install \hosting_platform_update_6001()
  2. 7.3 platform/hosting_platform.install \hosting_platform_update_6001()

File

platform/hosting_platform.install, line 96
Install, update and uninstall for the Platforms module.

Code

function hosting_platform_update_6001() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {hosting_platform} ADD COLUMN status int(11) NOT NULL default '1'");
  return $ret;
}