You are here

function hosting_platform_update_6003 in Hosting 6.2

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

Add the 'makefile' column.

File

platform/hosting_platform.install, line 126
Install, update and uninstall 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;
}