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

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

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

revision 1.1.2.6, Sun Mar 1 06:35:35 2009 UTC revision 1.1.2.7, Sat May 30 18:26:06 2009 UTC
# Line 5  Line 5 
5   */   */
6    
7  // Tables that do NOT have references elsewhere  // Tables that do NOT have references elsewhere
8  // Make sure these are tables you are sure will never be referenced because there will  //
9  //    be no error checking.  If you are unsure, then place this in $tables_referenced  // Make sure these are tables you are sure will never be referenced because
10  //    and set 'false positives'  // there will be no error checking.  If you are unsure, then place this in
11    // $tables_referenced and set 'false positives'
12    
13  $tables_standalone = array(  $tables_standalone = array(
14    'access',    'access',
15    'advanced_help_index',    'advanced_help_index',
16    'authmap',    'authmap',
17    'batch',    'batch',
18      'blogapi_files', // this should not have auto_increment on fid, since it is
19                       // files.fid (or at least should be)
20    'boxes',    'boxes',
21    'contact',    'contact',
22    'filters', // references are to filter_formats.format    'filters', // references are to filter_formats.format
23      'path_redirect',
24    'permission',    'permission',
25    'url_alias',    'url_alias',
26    'blogapi_files', // this should not have auto_increment on fid, since it is files.fid (or at least should be)    'workflow_access', // shouldn't have auto_increment on sid
27      'workflow_node_history',
28      'workflow_transitions',
29  );  );
30    
31    
32    
33  // Tables that are referenced by other tables  // Tables that are referenced by other tables
34    //
35  // Error checking will be performed against this array to ensure no additional  // Error checking will be performed against this array to ensure no additional
36  //    possibilies were added  // possibilies were added. You may also (and may need to) add new associations
37  // You may also add new associations even if they are not brought up automatically  // even if they are not brought up automatically.
38  //  //
39  // POSSIBLE WILD CARDS  // POSSIBLE WILD CARDS
40  // table_.*  // table_.*
# Line 35  $tables_standalone = array( Line 42  $tables_standalone = array(
42  // long_table_name_.*  // long_table_name_.*
43  // field_*  // field_*
44  // field_*_type  // field_*_type
45    //
46    // DEPENDANCIES
47    // In rare occasions, the meaning of an id in one column depends upon the value
48    // in another column of the same table.  For example, in the flag module, the
49    // column "content_id" holds values that could be referencing nodes, comments
50    // or users.  Which one depends upon the value of the "content_type" column.
51    //
52    // You can express these dependencies by making the column value of the
53    // reference an array, in which is the depenant column value, and the column
54    // that contains the id with an astrick symbolizing the value to change.
55    // For example:
56    //
57    // 'flag_content' => array(array('content_type' => 'comment', 'content_id' => '*'))
58    // 'flag_content' => array(array('content_type' => 'node', 'content_id' => '*'))
59    // 'flag_content' => array('uid', array('content_type' => 'user', 'content_id' => '*'))
60    //
61    // Each table can only have one instance of this type of dependency.
62    // You CANNOT use wildcards when defining any values for dependancies.
63    
64  $tables_referenced = array(  $tables_referenced = array(
65    
# Line 44  $tables_referenced = array( Line 69  $tables_referenced = array(
69        'trigger_assignments' => array('aid'),        'trigger_assignments' => array('aid'),
70      ),      ),
71      'false positives' => array(      'false positives' => array(
72          'flag_actions' => array('aid'),
73      ),      ),
74    ),    ),
75    
# Line 51  $tables_referenced = array( Line 77  $tables_referenced = array(
77      'references' => array(      'references' => array(
78        'aggregator_category_feed' => array('cid'),        'aggregator_category_feed' => array('cid'),
79      ),      ),
80      'false positives' => array (      'false positives' => array(
81          'biblio_collection' => array('cid'),
82          'biblio_collection_type' => array('cid'),
83          'biblio_contributor' => array('cid'),
84        'webform_component' => array('cid'),        'webform_component' => array('cid'),
85        'webform_submitted_data' => array('cid',),        'webform_submitted_data' => array('cid',),
86      ),      ),
# Line 61  $tables_referenced = array( Line 90  $tables_referenced = array(
90      'references' => array(      'references' => array(
91        'aggregator_category_feed' => array('fid'),        'aggregator_category_feed' => array('fid'),
92      ),      ),
93      'false positives' => array (      'false positives' => array(
94          'biblio_field_type' => array('fid'),
95          'biblio_fields' => array('fid'),
96        'content_field_.*' => array('field_*_fid'),        'content_field_.*' => array('field_*_fid'),
97        'content_type_.*' => array('field_*_fid'),        'content_type_.*' => array('field_*_fid'),
98        'image' => array('fid'),        'image' => array('fid'),
# Line 70  $tables_referenced = array( Line 101  $tables_referenced = array(
101      ),      ),
102    ),    ),
103    
104      'biblio_contributor_data' => array(
105        'references' => array(
106          'biblio_contributor' => array('cid'),
107        ),
108        'false positives' => array(
109          'aggregator_category_feed' => array('cid'),
110          'biblio_collection' => array('cid'),
111          'biblio_collection_type' => array('cid'),
112        ),
113      ),
114    
115      'biblio_contributor_type_data' => array(
116        'references' => array(
117          'biblio_contributor' => array('auth_type'),
118          'biblio_contributor_type' => array('auth_type'),
119        ),
120        'false positives' => array(
121        ),
122      ),
123    
124      'biblio_keyword_data' => array(
125        'references' => array(
126          'biblio_keyword' => array('kid'),
127        ),
128        'false positives' => array(
129        ),
130      ),
131    
132    'blocks' => array(    'blocks' => array(
133      'references' => array(      'references' => array(
134        // Boxes will not show up when searching for references        // Boxes will not show up when searching for references
# Line 77  $tables_referenced = array( Line 136  $tables_referenced = array(
136        // It shouldn't have auto_increment, though...        // It shouldn't have auto_increment, though...
137        'boxes' => array('bid'),        'boxes' => array('bid'),
138      ),      ),
139      'false positives' => array (      'false positives' => array(
140        'book' => array('bid'),        'book' => array('bid'),
141      ),      ),
142    ),    ),
143    
144      'comments' => array(
145        'references' => array(
146          'flag_content' => array(array('content_type' => 'comment', 'content_id' => '*')),
147        ),
148        'false positives' => array(
149          'aggregator_category_feed' => array('cid'),
150          'biblio_collection' => array('cid'),
151          'biblio_collection_type' => array('cid'),
152          'biblio_contributor' => array('cid'),
153          'aggregator_contributor' => array('cid'),
154        ),
155      ),
156    
157      'faceted_search_env' => array(
158        'references' => array(
159          'faceted_search_filters' => array('env_id'),
160        ),
161        'false positives' => array(
162        ),
163      ),
164    
165    'files' => array(    'files' => array(
166      'references' => array(      'references' => array(
167        'content_field_.*' => array('field_*_fid'),        'content_field_.*' => array('field_*_fid'),
# Line 89  $tables_referenced = array( Line 169  $tables_referenced = array(
169        'image' => array('fid'),        'image' => array('fid'),
170        'upload' => array('fid'),        'upload' => array('fid'),
171      ),      ),
172      'false positives' => array (      'false positives' => array(
173        'aggregator_category_feed' => array('fid'),        'aggregator_category_feed' => array('fid'),
174        'profile_values' => array('fid'),        'profile_values' => array('fid'),
175          'biblio_field_type' => array('fid'),
176          'biblio_fields' => array('fid'),
177          'flag_actions' => array('fid'),
178          'flag_content' => array('fid'),
179          'flag_counts' => array('fid'),
180          'flag_types' => array('fid'),
181      ),      ),
182    ),    ),
183    
# Line 99  $tables_referenced = array( Line 185  $tables_referenced = array(
185      'references' => array(      'references' => array(
186        'better_formats_defaults' => array('format'),        'better_formats_defaults' => array('format'),
187        'boxes' => array('format'),        'boxes' => array('format'),
188          'comments' => array('format'),
189        'content_field_.*' => array('field_*_format'),        'content_field_.*' => array('field_*_format'),
190        'content_type_.*' => array('field_*_format'),        'content_type_.*' => array('field_*_format'),
191        'filters' => array('format'),        'filters' => array('format'),
192        'node_revisions' => array('format'),        'node_revisions' => array('format'),
193        'wysiwyg' => array('format'),        'wysiwyg' => array('format'),
194      ),      ),
195      'false positives' => array (      'false positives' => array(
196          'date_format' => array('format'),
197          'date_format_locale' => array('format'),
198          'simplenews_newsletters' => array('s_format'),
199        ),
200      ),
201    
202      'flag_actions' => array(
203        'references' => array(
204        ),
205        'false positives' => array(
206          'actions' => array('aid'),
207          'trigger_assignments' => array('aid'),
208        ),
209      ),
210    
211      'flags' => array(
212        'references' => array(
213          'flag_actions' => array('fid'),
214          'flag_content' => array('fid'),
215          'flag_counts' => array('fid'),
216          'flag_types' => array('fid'),
217        ),
218        'false positives' => array(
219          'aggregator_category_feed' => array('fid'),
220          'biblio_field_type' => array('fid'),
221          'biblio_fields' => array('fid'),
222          'content_field_.*' => array('field_*_fid'),
223          'content_type_.*' => array('field_*_fid'),
224          'image' => array('fid'),
225          'profile_values' => array('fid'),
226          'upload' => array('fid'),
227      ),      ),
228    ),    ),
229    
# Line 113  $tables_referenced = array( Line 231  $tables_referenced = array(
231      'references' => array(      'references' => array(
232        'imagecache_action' => array('presetid'),        'imagecache_action' => array('presetid'),
233      ),      ),
234      'false positives' => array (      'false positives' => array(
235        ),
236      ),
237    
238      'legal_conditions' => array(
239        'references' => array(
240          'legal_accepted' => array('tc_id'),
241        ),
242        'false positives' => array(
243      ),      ),
244    ),    ),
245    
# Line 121  $tables_referenced = array( Line 247  $tables_referenced = array(
247      'references' => array(      'references' => array(
248        'locales_target' => array('lid', 'plid'),        'locales_target' => array('lid', 'plid'),
249      ),      ),
250      'false positives' => array (      'false positives' => array(
251        'book' => array('mlid'),        'book' => array('mlid'),
252        'menu_links' => array('plid' ),        'menu_links' => array('plid' ),
253        'webform' => array('additional_validate' ),        'webform' => array('additional_validate'),
254      ),      ),
255    ),    ),
256    
# Line 133  $tables_referenced = array( Line 259  $tables_referenced = array(
259        'book' => array('mlid'),        'book' => array('mlid'),
260        'menu_links' => array('plid'),        'menu_links' => array('plid'),
261      ),      ),
262      'false positives' => array (      'false positives' => array(
263        ),
264      ),
265    
266      'mode' => array(
267        'references' => array(
268        ),
269        'false positives' => array(
270          'formdefaults_forms' => array('formid'),
271      ),      ),
272    ),    ),
273    
274    'node' => array(    'node' => array(
275      'references' => array(      'references' => array(
276          'biblio' => array('nid'),
277          'biblio_collection' => array('nid'),
278          'biblio_contributor' => array('nid'),
279          'biblio_keyword' => array('nid'),
280          'biblioreference_title_keyword' => array('nid'),
281        'book' => array('nid'),        'book' => array('nid'),
282        'comments' => array('nid'),        'comments' => array('nid'),
283        'content_field_.*' => array('nid', 'field_*_nid'),        'content_field_.*' => array('nid', 'field_*_nid'),
284        'content_type_.*' => array('nid', 'field_*_nid'),        'content_type_.*' => array('nid', 'field_*_nid'),
285          'feedapi' => array('nid'),
286          'feedapi_mapper' => array('nid'),
287          'feedapi_node_item' => array('nid'),
288          'feedapi_node_item_feed' => array('feed_nid', 'feed_item_nid'),
289          'flag_content' => array(array('content_type' => 'node', 'content_id' => '*')),
290        'forum' => array('nid'),        'forum' => array('nid'),
291        'image' => array('nid'),        'image' => array('nid'),
292        'image_attach' => array('nid'),        'image_attach' => array('nid'),
293        'img_assist_map' => array('nid', 'iid'),        'img_assist_map' => array('nid', 'iid'),
294          'nat' => array('nid'),
295        'node_access' => array('nid'),        'node_access' => array('nid'),
296          'node_field_rdf' => array('property_nid'),
297        'node_revisions' => array('nid'),        'node_revisions' => array('nid'),
298          'node_type_rdf' => array('class_nid'),
299          'og' => array('nid'),
300          'og_access_post' => array('nid'),
301          'og_ancestry' => array('nid', 'group_nid'),
302          'og_uid' => array('nid'),
303          'pdsolicit' => array('nid'),
304        'poll' => array('nid'),        'poll' => array('nid'),
305        'poll_choices' => array('nid'),        'poll_choices' => array('nid'),
306          'privacy' => array('nid'),
307          'search_block' => array('nid'),
308          'simplenews_mail_spool' => array('nid'),
309          'simplenews_newsletters' => array('nid'),
310        'term_node' => array('nid'),        'term_node' => array('nid'),
311          'taxonomy_facets_node' => array('nid'),
312          'taxonomy_facets_term_node' => array('nid'),
313        'upload' => array('nid'),        'upload' => array('nid'),
314        'webform' => array('nid'),        'webform' => array('nid'),
315        'webform_component' => array('nid'),        'webform_component' => array('nid'),
316        'webform_roles' => array('nid'),        'webform_roles' => array('nid'),
317        'webform_submissions' => array('nid'),        'webform_submissions' => array('nid'),
318        'webform_submitted_data' => array('nid'),        'webform_submitted_data' => array('nid'),
319          'workflow_node' => array('nid'),
320          'workflow_node_history' => array('nid'),
321          'workflow_scheduled_transition' => array('nid'),
322      ),      ),
323      'false positives' => array (      'false positives' => array(
324        'content_field_.*' => array('field_*_fid', 'field_*_list', 'field_*_data'),        'content_field_.*' => array('field_*_fid', 'field_*_list', 'field_*_data'),
325        'content_type_.*' => array('field_*_fid', 'field_*_list', 'field_*_data'),        'content_type_.*' => array('field_*_fid', 'field_*_list', 'field_*_data'),
326        'node' => array('tnid'),        'node' => array('tnid'),
327          'simplenews_snid_tid' => array('snid'),
328      ),      ),
329    ),    ),
330    
331    'node_revisions' => array(    'node_revisions' => array(
332      'references' => array(      'references' => array(
333          'biblio' => array('vid'),
334          'biblio_collection' => array('vid'),
335          'biblio_contributor' => array('vid'),
336          'biblio_duplicates' => array('vid'),
337          'biblio_keyword' => array('vid'),
338        'content_field_.*' => array('vid'),        'content_field_.*' => array('vid'),
339        'content_type_.*' => array('vid'),        'content_type_.*' => array('vid'),
340        'forum' => array('vid'),        'forum' => array('vid'),
341          'nat' => array('vid'),
342        'node' => array('vid'),        'node' => array('vid'),
343          'simplenews_mail_spool' => array('vid'),
344          'simplenews_newsletters' => array('vid'),
345        'term_node' => array('vid'),        'term_node' => array('vid'),
346        'upload' => array('vid'),        'upload' => array('vid'),
347      ),      ),
348      'false positives' => array (      'false positives' => array(
349        // I can't think of a case where a field would refer to a revision        'biblio' => array('biblio_remote_db_provider'),
350        'content_field_.*' => array('field_*'),        'content_field_.*' => array('field_*'),
351        'content_type_.*' => array('field_*'),        'content_type_.*' => array('field_*'),
352          'taxonomy_dhtml' => array('vid'),
353          'taxonomy_tree' => array('vid'),
354        'term_data' => array('vid'),        'term_data' => array('vid'),
355        'views_display' => array('vid'),        'views_display' => array('vid'),
356        'vocabulary_node_types' => array('vid'),        'vocabulary_node_types' => array('vid'),
# Line 189  $tables_referenced = array( Line 361  $tables_referenced = array(
361      'references' => array(      'references' => array(
362        'profile_values' => array('fid'),        'profile_values' => array('fid'),
363      ),      ),
364      'false positives' => array (      'false positives' => array(
365        'aggregator_category_feed' => array('fid'),        'aggregator_category_feed' => array('fid'),
366        // We can safely assume all fid will refer to files.fid and not this table        // We can safely assume all fid will refer to files.fid and not this table
367        'content_field_.*' => array('field_*'),        'content_field_.*' => array('field_*'),
# Line 197  $tables_referenced = array( Line 369  $tables_referenced = array(
369        'image' => array('fid'),        'image' => array('fid'),
370        'upload' => array('fid'),        'upload' => array('fid'),
371      ),      ),
372      ),
373    
374      'rdf_data' => array(
375        'references' => array(
376        ),
377        'false positives' => array(
378          'biblio_duplicates' => array('did'),
379          'biblio_field_type' => array('ftdid', 'cust_tdid'),
380          'biblio_field_type_data' => array('ftdid'),
381        ),
382      ),
383    
384      'rdf_resources' => array(
385        'references' => array(
386        ),
387        'false positives' => array(
388          'better_formats_defaults' => array('rid'),
389          'blocks_roles' => array('rid'),
390          'permission' => array('rid'),
391          'users_roles' => array('rid'),
392          'workflow_access' => array('rid'),
393        ),
394    ),    ),
395    
396    'role' => array(    'role' => array(
# Line 208  $tables_referenced = array( Line 400  $tables_referenced = array(
400        'permission' => array('rid'),        'permission' => array('rid'),
401        'users_roles' => array('rid'),        'users_roles' => array('rid'),
402        'webform_roles' => array('rid'),        'webform_roles' => array('rid'),
403          'workflow_access' => array('rid'),
404      ),      ),
405      'false positives' => array (      'false positives' => array(
406        ),
407      ),
408    
409      'simplenews_subscriptions' => array(
410        'references' => array(
411          'simplenews_snid_tid' => array('snid'),
412        ),
413        'false positives' => array(
414      ),      ),
415    ),    ),
416    
417    'term_data' => array(    'term_data' => array(
418      'references' => array(      'references' => array(
419        'forum' => array('tid'),        'forum' => array('tid'),
420          'nat' => array('tid'),
421        'permission' => array('tid'),        'permission' => array('tid'),
422          'rdf_data' => array('tid'),
423          'simplenews_mail_spool' => array('tid'),
424          'simplenews_newsletters' => array('tid'),
425          'simplenews_snid_tid' => array('tid'),
426          'taxonomy_facets_term_node' => array('tid'),
427          'taxonomy_manager_merge' => array('main_tid', 'merged_tid'),
428        'term_hierarchy' => array('tid'),        'term_hierarchy' => array('tid'),
429        'term_node' => array('tid'),        'term_node' => array('tid'),
430        'term_relation' => array('tid1', 'tid2'),        'term_relation' => array('tid1', 'tid2'),
431        'term_synonym' => array('tid'),        'term_synonym' => array('tid'),
432      ),      ),
433      'false positives' => array (      'false positives' => array(
434          'biblio_field_type' => array('tid'),
435          'biblio_types' => array('tid'),
436        'imagecache_action' => array('presetid'),        'imagecache_action' => array('presetid'),
437      ),      ),
438    ),    ),
# Line 230  $tables_referenced = array( Line 440  $tables_referenced = array(
440    'users' => array(    'users' => array(
441      'references' => array(      'references' => array(
442        'authmap' => array('uid'),        'authmap' => array('uid'),
443          'biblio_contributor_data' => array('drupal_uid'),
444        'blogapi_files' => array('uid'),        'blogapi_files' => array('uid'),
445        'comments' => array('uid'),        'comments' => array('uid'),
446          'content_field_.*' => array('field_*_uid'),
447          'content_type_.*' => array('field_*_uid'),
448        'files' => array('uid'),        'files' => array('uid'),
449          'flag_content' => array('uid', array('content_type' => 'user', 'content_id' => '*')),
450          'invite' => array('uid'),
451          'invite_notifications' => array('uid'),
452          'legal_accepted' => array('uid'),
453          'og_notifications' => array('uid'),
454          'messaging_store' => array('uid'),
455        'node' => array('uid'),        'node' => array('uid'),
456        'node_revisions' => array('uid'),        'node_revisions' => array('uid'),
457          'og_uid' => array('uid'),
458          'og_uid_global' => array('uid'),
459          'pdsolicit' => array('uid_sender', 'uid_recipient'),
460        'profile_values' => array('uid'),        'profile_values' => array('uid'),
461          'rdf_data' => array('uid'),
462          'simplenews_subscriptions' => array('uid'),
463          'user_import_extra' => array('uid'),
464        'users_roles' => array('uid'),        'users_roles' => array('uid'),
465        'webform_submissions' => array('uid'),        'webform_submissions' => array('uid'),
466          'workflow_node' => array('uid'),
467          'workflow_node_history' => array('uid'),
468      ),      ),
469      'false positives' => array (      'false positives' => array(
470          'feedapi_node_item' => array('guid'),
471      ),      ),
472    ),    ),
473    
# Line 247  $tables_referenced = array( Line 475  $tables_referenced = array(
475      'references' => array(      'references' => array(
476        'views_display' => array('vid'),        'views_display' => array('vid'),
477      ),      ),
478      'false positives' => array (      'false positives' => array(
479        // Not filtering field_* because it could want field_*_vid for referencing views        'biblio' => array('vid', 'biblio_remote_db_provider'),
480          'biblio_collection' => array('vid'),
481          'biblio_contributor' => array('vid'),
482          'biblio_duplicates' => array('vid'),
483          'biblio_keyword' => array('vid'),
484        'content_field_.*' => array('vid', 'field_*_nid', 'field_*_fid', 'field_*_list', 'field_*_data'),        'content_field_.*' => array('vid', 'field_*_nid', 'field_*_fid', 'field_*_list', 'field_*_data'),
485        'content_type_.*' => array('vid', 'field_*_nid', 'field_*_fid', 'field_*_list', 'field_*_data'),        'content_type_.*' => array('vid', 'field_*_nid', 'field_*_fid', 'field_*_list', 'field_*_data'),
486        'forum' => array('vid'),        'forum' => array('vid'),
487          'nat' => array('vid'),
488        'node' => array('vid'),        'node' => array('vid'),
489          'simplenews_mail_spool' => array('vid'),
490          'simplenews_newsletters' => array('vid'),
491          'taxonomy_dhtml' => array('vid'),
492          'taxonomy_tree' => array('vid'),
493        'term_data' => array('vid'),        'term_data' => array('vid'),
494        'term_node' => array('vid'),        'term_node' => array('vid'),
495        'upload' => array('vid'),        'upload' => array('vid'),
496        'vocabulary_node_types' => array('vid'),        'vocabulary_node_types' => array('vid'),
497      ),      ),
   
   
498    ),    ),
499    
500    'vocabulary' => array(    'vocabulary' => array(
501      'references' => array(      'references' => array(
502          'nat' => array('vid'),
503          'taxonomy_dhtml' => array('vid'),
504          'taxonomy_tree' => array('vid'),
505        'vocabulary_node_types' => array('vid'),        'vocabulary_node_types' => array('vid'),
506      ),      ),
507      'false positives' => array (      'false positives' => array(
508        // Not filtering field_* because it could want field_*_vid for referencing vocabularies        'biblio' => array('vid', 'biblio_remote_db_provider'),
509          'biblio_collection' => array('vid'),
510          'biblio_contributor' => array('vid'),
511          'biblio_duplicates' => array('vid'),
512          'biblio_keyword' => array('vid'),
513        'content_field_.*' => array('vid', 'field_*_nid', 'field_*_fid', 'field_*_list', 'field_*_data'),        'content_field_.*' => array('vid', 'field_*_nid', 'field_*_fid', 'field_*_list', 'field_*_data'),
514        'content_type_.*' => array('vid', 'field_*_nid', 'field_*_fid', 'field_*_list', 'field_*_data'),        'content_type_.*' => array('vid', 'field_*_nid', 'field_*_fid', 'field_*_list', 'field_*_data'),
515        'forum' => array('vid'),        'forum' => array('vid'),
516        'node' => array('vid'),        'node' => array('vid'),
517          'simplenews_mail_spool' => array('vid'),
518          'simplenews_newsletters' => array('vid'),
519        'term_data' => array('vid'),        'term_data' => array('vid'),
520        'term_node' => array('vid'),        'term_node' => array('vid'),
521        'upload' => array('vid'),        'upload' => array('vid'),
# Line 283  $tables_referenced = array( Line 527  $tables_referenced = array(
527      'references' => array(      'references' => array(
528        'webform_submitted_data' => array('sid'),        'webform_submitted_data' => array('sid'),
529      ),      ),
530      'false positives' => array (      'false positives' => array(
531        ),
532      ),
533    
534      'workflow_states' => array(
535        'references' => array(
536          'workflow_access' => array('sid'),
537          'workflow_node' => array('sid'),
538          'workflow_node_history' => array('old_sid', 'sid'),
539          'workflow_scheduled_transition' => array('old_sid', 'sid'),
540          'workflow_transitions' => array('sid', 'target_sid'),
541        ),
542        'false positives' => array(
543          'pdsolicit' => array('sid', 'sid_delegated'),
544          'rdf_data' => array('sid'),
545          'workflow_states' => array('sysid'),
546        ),
547      ),
548    
549      'workflows' => array(
550        'references' => array(
551          'workflow_states' => array('wid'),
552          'workflow_type_map' => array('wid'),
553        ),
554        'false positives' => array(
555          'content_node_field_instance' => array('widget_*'),
556      ),      ),
557    ),    ),
558    
# Line 297  $tables_referenced = array( Line 566  $tables_referenced = array(
566  //  //
567  // VIEWS ARE NOT SUPPORTED: Due to the method that views stores its data, it is  // VIEWS ARE NOT SUPPORTED: Due to the method that views stores its data, it is
568  // impossible to perform a string match and replace.  Record any references made  // impossible to perform a string match and replace.  Record any references made
569  // to specific NEWLY CREATED node/users/terms since the last merge  // to specific node/users/terms NEWLY CREATED since the last merge
570  // in 'PostMergeInstructions.txt' and update the view after merging.  Direct  // in 'PostMergeInstructions.txt' and update the view after merging.  Direct
571  // references to nodes created before the last merge will cause no  // references to nodes created before the last merge will cause no
572  // difficulties.  // difficulties.

Legend:
Removed from v.1.1.2.6  
changed lines
  Added in v.1.1.2.7

  ViewVC Help
Powered by ViewVC 1.1.2