You are here

function hosting_platform_update_6003 in Hosting 7.4

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

Implements hook_update_N().

Add the 'makefile' column.

File

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