tableMappings.inc
7.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?php
/**
* $Id$
*
* Stores the table mappings.
*
* The contents of this file are subject to the KnowledgeTree Public
* License Version 1.1 ("License"); You may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.knowledgetree.com/KPL
*
* Software distributed under the License is distributed on an "AS IS"
* basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is: KnowledgeTree Open Source
*
* The Initial Developer of the Original Code is The Jam Warehouse Software
* (Pty) Ltd, trading as KnowledgeTree.
* Portions created by The Jam Warehouse Software (Pty) Ltd are Copyright
* (C) 2007 The Jam Warehouse Software (Pty) Ltd;
* All Rights Reserved.
*
*/
// Table mappings
// session information
$default->sessions_table = 'active_sessions';
//data types table
$default->data_types_table ='data_types';
// document type fields
$default->document_fields_table = 'document_fields';
$default->fieldsets_table = 'fieldsets';
// links document
$default->document_fields_link_table = 'document_fields_link';
// document subscriptions
$default->document_subscriptions_table = 'document_subscriptions';
// document transaction types
$default->transaction_types_table = 'document_transaction_types_lookup';
// document transactions
$default->document_transactions_table = 'document_transactions';
// links document types to document type fields
$default->document_type_fields_table = 'document_type_fields_link';
// links document types to document type fields
$default->document_type_fieldsets_table = 'document_type_fieldsets_link';
// document type information
$default->document_types_table = 'document_types_lookup';
// stores documents
$default->documents_table = 'documents';
//link folders to doc types
$default->folder_doctypes_table = 'folder_doctypes_link';
// stores folder subscriptions
$default->folder_subscriptions_table = 'folder_subscriptions';
// stores folders
$default->folders_table = 'folders';
// stores group information
$default->groups_table = 'groups_lookup';
// links groups to units
$default->groups_units_table = 'groups_units_link';
// links -- DEPRECATED
//$default->quicklinks_table = 'links';
// Table with metadata
$default->metadata_table = 'metadata_lookup';
// Table with mime info
$default->mimetypes_table = 'mime_types';
// dashboard news table
$default->news_table = 'news';
// organisation information
$default->organisations_table = 'organisations_lookup';
// stores role information (name and access)
$default->roles_table = 'roles';
// sitemap access classes
$default->site_access_table = 'site_access_lookup';
// sitemap sections
$default->site_sections_table = 'site_sections_lookup';
// sitemap definition
$default->sitemap_table = 'sitemap';
// stores default system settings
$default->system_settings_table = 'system_settings';
// Table with discussion threads
$default->discussion_threads_table = 'discussion_threads';
// Table with discussion comments
$default->discussion_comments_table = 'discussion_comments';
// Table with unit information
$default->units_table = 'units_lookup';
// Table with unit organisation link tables
$default->units_organisations_table = 'units_organisations_link';
// Table with user info
$default->users_table = 'users';
// links groups to users
$default->users_groups_table = 'users_groups_link';
// Table with web documents info for web publishing
$default->web_documents_table = 'web_documents';
// Table with web documents info for web publishing
$default->web_documents_status_table = 'web_documents_status_lookup';
// stores websites for web publishing
$default->web_sites_table = 'web_sites';
//stores help text
$default->help_table = 'help';
$default->document_text_table = 'document_text';
$default->document_link_table = 'document_link';
// archive settings
$default->document_archiving_table = 'document_archiving_link';
$default->archiving_type_lookup_table = 'archiving_type_lookup';
$default->archiving_settings_table = 'archiving_settings';
$default->time_period_table = 'time_period';
$default->time_unit_lookup_table = 'time_unit_lookup';
$default->archive_restoration_table = 'archive_restoration_request';
$default->status_table = 'status_lookup';
$default->search_permissions_table = 'search_document_user_link';
$default->document_link_types_table = 'document_link_types';
$default->upgrades_table = 'upgrades';
$default->help_replacement_table = 'help_replacement';
$default->permissions_table = 'permissions';
$default->permission_objects_table = 'permission_objects';
$default->permission_descriptors_table = 'permission_descriptors';
$default->permission_assignments_table = 'permission_assignments';
$default->permission_descriptor_groups_table = 'permission_descriptor_groups';
$default->permission_descriptor_roles_table = 'permission_descriptor_roles';
$default->permission_descriptor_users_table = 'permission_descriptor_users';
$default->permission_lookups_table = 'permission_lookups';
$default->permission_lookup_assignments_table = 'permission_lookup_assignments';
$default->groups_groups_table = 'groups_groups_link';
$default->metadata_treenode_table = 'metadata_lookup_tree';
$default->metadata_condition_table = 'metadata_lookup_condition';
$default->md_condition_table = 'metadata_lookup_condition';
$default->md_condition_chain_table = 'metadata_lookup_condition_chain';
$default->field_orders_table = 'field_orders';
$default->workflows_table = 'workflows';
$default->workflow_states_table = 'workflow_states';
$default->workflow_transitions_table = 'workflow_transitions';
$default->workflow_state_transitions_table = 'workflow_state_transitions';
$default->workflow_documents_table = 'workflow_documents';
$default->workflow_actions_table = 'workflow_actions';
$default->workflow_state_actions_table = 'workflow_state_actions';
$default->field_value_instances_table = 'field_value_instances';
$default->field_behaviours_table = 'field_behaviours';
$default->field_behaviour_options_table = 'field_behaviour_options';
$default->document_transaction_text_table = 'document_transaction_text';
$default->document_searchable_text_table = 'document_searchable_text';
$default->saved_searches_table = 'saved_searches';
$default->permission_dynamic_conditions_table = 'permission_dynamic_conditions';
$default->permission_dynamic_assignments_table = 'permission_dynamic_assignments';
$default->notifications_table = 'notifications';
$default->authentication_sources_table = 'authentication_sources';
$default->dashlet_disable_table = 'dashlet_disables';
$default->role_allocations_table = 'role_allocations';
$default->document_role_allocations_table = 'document_role_allocations';
$default->plugins_table = 'plugins';
$default->document_metadata_version_table = 'document_metadata_version';
$default->document_content_version_table = 'document_content_version';
$default->trigger_selection_table = 'trigger_selection';
$default->type_workflow_map_table = 'type_workflow_map';
$default->folder_workflow_map_table = 'folder_workflow_map';
$default->workflow_state_permission_assignments_table = 'workflow_state_permission_assignments';
?>