Skip to content

Instantly share code, notes, and snippets.

@andyg5000
Created February 10, 2016 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyg5000/10bf03286a93a9a0741a to your computer and use it in GitHub Desktop.
Save andyg5000/10bf03286a93a9a0741a to your computer and use it in GitHub Desktop.
Drush settings
<?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