function hosting_platform_update_6001 in Hosting 7.4
Same name and namespace in other branches
- 6.2 platform/hosting_platform.install \hosting_platform_update_6001()
- 7.3 platform/hosting_platform.install \hosting_platform_update_6001()
File
- platform/
hosting_platform.install, line 125 - 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;
}