You are here

function hosting_site_update_6007 in Hosting 6.2

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

Add backup size to hosting_site_backups table

File

site/hosting_site.install, line 261

Code

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