array('cache', 'cache_filter', 'cache_menu', 'cache_page', 'history', 'sessions', 'watchdog'), ); /* * Customize this associative array with your own tables. This is the list of * tables that are entirely omitted by the 'sql-dump' and 'sql-sync' commands * when a skip-tables-key is provided. This is useful if your database contains * non Drupal tables used by some other application or during a migration for * example. You may add new tables to the existing array or add a new element. */ $options['skip-tables'] = array( 'common' => array('migration_data1', 'migration_data2'), ); /* * Command-specific options * * To define options that are only applicable to certain commands, * make an entry in the 'command-specific' structures as shown below. * The name of the command may be either the command's full name * or any of the command's aliases. * * Options defined here will be overridden by options of the same * name on the command line. Unary flags such as "--verbose" are overridden * via special "--no-xxx" options (e.g. "--no-verbose"). * * Limitation: If 'verbose' is set in a command-specific option, * it must be cleared by '--no-verbose', not '--no-v', and visa-versa. */ # $command_specific['rsync'] = array('verbose' => TRUE); # $command_specific['dl'] = array('cvscredentials' => 'user:pass'); // Specify additional directories to search for scripts // Separate by : (Unix-based systems) or ; (Windows). # $command_specific['script']['script-path'] = 'sites/all/scripts:profiles/myprofile/scripts'; // Always show release notes when running pm-update or pm-updatecode # $command_specific['pm-update'] = array('notes' => TRUE); # $command_specific['pm-updatecode'] = array('notes' => TRUE); // List of drush commands or aliases that should override built-in // shell functions and commands; otherwise, built-ins override drush // commands. Default is help,dd,sa. // Warning: bad things can happen if you put the wrong thing here // (e.g. eval, grep), so be cautious. // If a drush command overrides a built-in command (e.g. bash help), // then you can use the `builtin` operator to run the built-in version // (e.g. `builtin help` to show bash help instead of drush help.) // If a drush command overrides a shell command (e.g. grep), then // you can use the regular shell command by typing in the full path // to the command (e.g. /bin/grep). # $command_specific['core-cli'] = array('override' => 'help,dd,sa'); /** * Variable overrides: * * To override specific entries in the 'variable' table for this site, * set them here. Any configuration setting from the 'variable' * table can be given a new value. We use the $override global here * to make sure that changes from settings.php can not wipe out these * settings. * * Remove the leading hash signs to enable. */ # $override = array( # 'site_name' => 'My Drupal site', # 'theme_default' => 'minnelli', # 'anonymous' => 'Visitor', # );