You are here

function _backup_migrate_default_exclude_tables in Backup and Migrate 5

Same name and namespace in other branches
  1. 8.2 includes/db.inc \_backup_migrate_default_exclude_tables()
  2. 5.2 includes/db.inc \_backup_migrate_default_exclude_tables()
  3. 6 backup_migrate.module \_backup_migrate_default_exclude_tables()

Tables to ingore altogether. None by default.

4 calls to _backup_migrate_default_exclude_tables()
BackupMigrateUnitTest::testDefaultTables in tests/BackupMigrateUnitTest.test
backup_migrate_backup in ./backup_migrate.module
The backup/export form.
backup_migrate_cron in ./backup_migrate.module
Implementation of hook_cron(),
_backup_migrate_backup_with_defaults in ./backup_migrate.module
Backup the database with the default settings.

File

./backup_migrate.module, line 1229
Create (manually or scheduled) and restore backups of your Drupal MySQL database with an option to exclude table data (f.e. cache_*)

Code

function _backup_migrate_default_exclude_tables() {
  return array();
}