You are here

function hosting_platform_update_6001 in Hosting 7.3

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

File

platform/hosting_platform.install, line 96
Define database schema and update functions 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;
}