function hosting_platform_update_6003 in Hosting 7.3
Same name and namespace in other branches
- 6.2 platform/hosting_platform.install \hosting_platform_update_6003()
- 7.4 platform/hosting_platform.install \hosting_platform_update_6003()
Implements hook_update_N().
Add the 'makefile' column.
File
- platform/
hosting_platform.install, line 130 - Define database schema and update functions for the Platforms module.
Code
function hosting_platform_update_6003() {
$ret = array();
$ret[] = update_sql("ALTER TABLE {hosting_platform} ADD COLUMN makefile TEXT NOT NULL");
return $ret;
}