Created
February 10, 2016 19:18
-
-
Save andyg5000/10bf03286a93a9a0741a to your computer and use it in GitHub Desktop.
Drush settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Provides drush overrides for Blue Oak Interactive. | |
*/ | |
$skip_tables = array( | |
'__ACQUIA_MONITORING', | |
); | |
$structure_tables = array( | |
'accesslog', | |
'cache', | |
'cache_block', | |
'cache_bootstrap', | |
'cache_commerce_shipping_rates', | |
'cache_entity_message', | |
'cache_entity_message_type', | |
'cache_entity_message_type_category', | |
'cache_field', | |
'cache_filter', | |
'cache_form', | |
'cache_image', | |
'cache_libraries', | |
'cache_menu', | |
'cache_metatag', | |
'cache_page', | |
'cache_path', | |
'cache_rules', | |
'cache_token', | |
'cache_views', | |
'cache_views_data', | |
'flood', | |
'search_index', | |
'watchdog', | |
); | |
$options['command-specific'] = array ( | |
'sql-dump' => array( | |
'skip-tables-list' => implode(',', $skip_tables), | |
'structure-tables-list' => implode(',', $structure_tables), | |
), | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment