You are here

function backup_migrate_update_6302 in Backup and Migrate 6.3

Add a second destination to schedules.

File

./backup_migrate.install, line 597
Install hooks for Backup and Migrate.

Code

function backup_migrate_update_6302() {
  $ret = array();
  db_add_field($ret, 'backup_migrate_schedules', 'copy_destination_id', array(
    'type' => 'varchar',
    'length' => 32,
    'not null' => TRUE,
    'default' => '0',
    'description' => t('A second {backup_migrate_destination}.destination_id of the destination to copy the backup to.'),
  ));
  return $ret;
}