/[drupal]/contributions/modules/dbscripts/config.inc.example
ViewVC logotype

Diff of /contributions/modules/dbscripts/config.inc.example

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.5.4.9, Sat Feb 28 21:18:58 2009 UTC revision 1.5.4.10, Sat May 30 18:26:06 2009 UTC
# Line 12  Line 12 
12  $script_path = './dbscripts';  $script_path = './dbscripts';
13    
14  // Location of settings.php  // Location of settings.php
15  $settings_path = './sites/default';  $settings_path = './sites/default/settings.php';
16    
17  // Location where database dump files will be stored  // Location where database dump files will be stored
18  $dump_path = './databases';  $dump_path = './databases';
# Line 43  $dbtype = 'mysqli'; Line 43  $dbtype = 'mysqli';
43   *   *
44   * Set to FALSE to use your own auto_increment handling method.   * Set to FALSE to use your own auto_increment handling method.
45   */   */
   
46  $raise_increments_on_merge = TRUE;  $raise_increments_on_merge = TRUE;
47    
48    
49    /**
50     * Some versions of MySQL do not set character encoding for column names which
51     * can cause unnessisary changes in the version control system.  If this is
52     * happening amungst your group of developers, you can set this value to TRUE
53     * to avoid the conflicts.  However, it means you cannot have special
54     * characters in your column names.
55     */
56    $remove_column_charset = TRUE;
57    
58    
59    /**
60     * Enable debugging
61     *
62     * This just prints out what dbscripts is doing so you can more easily find the
63     * source of an error.  Handy when you have duplicate key issues on restore.
64     */
65    $debugging = FALSE;
66    
67    
68  /**  /**
69   * Filtered tables   * Filtered tables
# Line 56  $raise_increments_on_merge = TRUE; Line 73  $raise_increments_on_merge = TRUE;
73  // These tables are always filtered except when 'none' filtering option is used  // These tables are always filtered except when 'none' filtering option is used
74  // always deleted when performing a restore  // always deleted when performing a restore
75  $tables_filtered =  array(  $tables_filtered =  array(
76      'biblio_import_cache',
77    'cache',    'cache',
78    'cache_.*',    'cache_.*',
79    'views_object_cache',    'views_object_cache',
# Line 77  $tables_filtered_l2 = array( Line 95  $tables_filtered_l2 = array(
95    'aggregator_item',    'aggregator_item',
96    'aggregator_category_item',    'aggregator_category_item',
97    'batch',    'batch',
98      'biblioreference_keyword',
99    'comment_notify',    'comment_notify',
100    'fivestar_comment',    'fivestar_comment',
101      'flag_counts',
102    'flood',    'flood',
103    'history',    'history',
104      'invite',
105      'invite_notifications',
106      'messaging_store',
107    'mollom',    'mollom',
   'node_comment_statistics',  
108    'node_counter',    'node_counter',
109      'node_comment_statistics',
110      'notifications',
111      'notifications_event',
112      'notifications_fields',
113      'notifications_queue',
114      'notifications_sent',
115    'poll_votes',    'poll_votes',
116    'search_dataset',    'search_dataset',
117    'search_index',    'search_index',
118    'search_node_links',    'search_node_links',
119    'search_total',    'search_total',
120      'simplenews_mail_spool',
121      'user_import',
122      'user_import_errors',
123      'user_import_extra',
124    'votingapi_vote',    'votingapi_vote',
125    'watchdog',    'watchdog',
126      'workflow_scheduled_transition',
127  );  );
128    
129    
# Line 106  $tables_merge = array( Line 139  $tables_merge = array(
139    'aggregator_category_feed',    'aggregator_category_feed',
140    'aggregator_feed',    'aggregator_feed',
141    'authmap',    'authmap',
142      'biblio',
143      'biblio_contributor',
144      'biblio_contributor_data',
145      'biblio_duplicates',
146      'biblio_keyword',
147      'biblio_keyword_data',
148    'blogapi_files',    'blogapi_files',
149    'book',    'book',
150      'contact',
151    'content_field_.*',    'content_field_.*',
152    'content_type_.*',    'content_type_.*',
153      'feedapi',
154      'feedapi_node_item',
155      'feedapi_node_item_feed',
156      'feedapi_stat',
157    'files',    'files',
158      'flag_content',
159    'forum',    'forum',
160    'image',    'image',
161    'image_attach',    'image_attach',
162    'img_assist_map',    'img_assist_map',
163      'legal_accepted',
164      'legal_conditions',
165    'menu_links',    'menu_links',
166    'menu_router',    'menu_router',
167      'nat',
168    'node',    'node',
169    'node_access',    'node_access',
170    'node_revisions',    'node_revisions',
171      'og',
172      'og_access_post',
173      'og_ancestry',
174      'og_notifications',
175      'og_uid',
176      'og_uid_global',
177      'parser_common_syndication',
178      'privacy',
179    'profile_values',    'profile_values',
180    'poll',    'poll',
181    'poll_choices',    'poll_choices',
182      'search_block',
183      'simplenews_newsletters',
184      'simplenews_snid_tid',
185      'taxonomy_facets_node',
186      'taxonomy_facets_term_node',
187      'taxonomy_manager_merge',
188    'term_data',    'term_data',
189    'term_hierarchy',    'term_hierarchy',
190    'term_node',    'term_node',
# Line 136  $tables_merge = array( Line 198  $tables_merge = array(
198    'vocabulary_node_types',    'vocabulary_node_types',
199    'webform_submissions',    'webform_submissions',
200    'webform_submitted_data',    'webform_submitted_data',
201      'workflow_node',
202      'workflow_node_history',
203      'workflow_transitions',
204  );  );
205    
206  // Tables that contain content to be taken from production  // Tables that contain content to be taken from production
# Line 145  $tables_override = array( Line 210  $tables_override = array(
210    'aggregator_item',    'aggregator_item',
211    'aggregator_category_item',    'aggregator_category_item',
212    'batch',    'batch',
213      'biblioreference_keyword',
214    'comments',    'comments',
215    'comment_notify',    'comment_notify',
216    'fivestar_comment',    'fivestar_comment',
217      'flag_counts',
218    'flood',    'flood',
219    'history',    'history',
220      'invite',
221      'invite_notifications',
222      'messaging_store',
223    'mollom',    'mollom',
224    'node_counter',    'node_counter',
225    'node_comment_statistics',    'node_comment_statistics',
226      'notifications',
227      'notifications_event',
228      'notifications_fields',
229      'notifications_queue',
230      'notifications_sent',
231    'poll_votes',    'poll_votes',
232    'profile_values',    'profile_values',
233    'search_dataset',    'search_dataset',
234    'search_index',    'search_index',
235    'search_node_links',    'search_node_links',
236    'search_total',    'search_total',
237    'sessions',    'simplenews_mail_spool',
238      'simplenews_subscriptions',
239      'user_import',
240      'user_import_errors',
241      'user_import_extra',
242    'votingapi_vote',    'votingapi_vote',
243    'watchdog',    'watchdog',
244      'workflow_scheduled_transition',
245  );  );

Legend:
Removed from v.1.5.4.9  
changed lines
  Added in v.1.5.4.10

  ViewVC Help
Powered by ViewVC 1.1.2