You are here

function hosting_site_update_7301 in Hosting 7.4

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

Use int:big to store backup size.

File

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

Code

function hosting_site_update_7301() {
  db_change_field('hosting_site_backups', 'size', 'size', array(
    'type' => 'int',
    'size' => 'big',
  ));
}