You are here

function hosting_platform_update_6003 in Hostmaster (Aegir) 6

Add the 'makefile' column.

File

modules/hosting/platform/hosting_platform.install, line 125
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;
}