You are here

function hosting_site_update_6008 in Hostmaster (Aegir) 6

Add the cron_key column to the hosting_site table.

File

modules/hosting/site/hosting_site.install, line 266

Code

function hosting_site_update_6008() {
  $ret = array();
  db_add_field($ret, 'hosting_site', 'cron_key', array(
    'type' => 'varchar',
    'not null' => TRUE,
    'length' => 80,
    'default' => '',
  ));
  return $ret;
}