You are here

function backup_migrate_update_7302 in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 7.3 backup_migrate.install \backup_migrate_update_7302()

Add a second destination to schedules.

File

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

Code

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