You are here

function hosting_site_update_6007 in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 site/hosting_site.install \hosting_site_update_6007()
  2. 7.3 site/hosting_site.install \hosting_site_update_6007()

Implements hook_update_N().

Add backup size to hosting_site_backups table

File

site/hosting_site.install, line 320
Define database schema and update functions for the hosting_site module.

Code

function hosting_site_update_6007() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {hosting_site_backups} ADD COLUMN size INT");
  return $ret;
}