You are here

function hosting_site_update_6001 in Hosting 6.2

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

File

site/hosting_site.install, line 212

Code

function hosting_site_update_6001() {
  $ret = array();
  db_add_field($ret, 'hosting_site', 'ssl', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}