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 // Use POSIX path separator (':') # $options['script']['script-path'] = 'sites/all/scripts:profiles/myprofile/scripts'; /** * 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', # );