function backup_migrate_update_7302 in Backup and Migrate 7.3
Same name and namespace in other branches
- 8.3 backup_migrate.install \backup_migrate_update_7302()
Add a second destination to schedules.
File
- ./
backup_migrate.install, line 793 - 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.',
));
}