forked from evoWeb/sessionplaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
222 lines (192 loc) · 8.07 KB
/
ext_tables.sql
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#
# Table structure for table 'tx_sessionplaner_domain_model_day'
#
CREATE TABLE tx_sessionplaner_domain_model_day
(
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
date varchar(255) DEFAULT '' NOT NULL,
rooms int(11) unsigned DEFAULT '0' NOT NULL,
slots int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY enable (deleted,hidden)
);
#
# Table structure for table 'tx_sessionplaner_domain_model_room'
#
CREATE TABLE tx_sessionplaner_domain_model_room
(
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
type varchar(255) DEFAULT '' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
logo int(11) unsigned DEFAULT '0' NOT NULL,
seats int(11) unsigned DEFAULT '0' NOT NULL,
days int(11) unsigned DEFAULT '0' NOT NULL,
slots int(11) unsigned DEFAULT '0' NOT NULL,
sessions int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY enable (deleted,hidden)
);
#
# Table structure for table 'tx_sessionplaner_domain_model_slot'
#
CREATE TABLE tx_sessionplaner_domain_model_slot
(
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
day int(11) unsigned DEFAULT '0' NOT NULL,
start int(11) DEFAULT '0' NOT NULL,
duration int(11) unsigned DEFAULT '45' NOT NULL,
break tinyint(4) unsigned DEFAULT '0' NOT NULL,
description text,
rooms int(11) unsigned DEFAULT '0' NOT NULL,
sessions int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY enable (deleted,hidden)
);
#
# Table structure for table 'tx_sessionplaner_domain_model_session'
#
CREATE TABLE tx_sessionplaner_domain_model_session
(
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
# references
topic varchar (255) DEFAULT '' NOT NULL,
path_segment varchar(2048),
speaker varchar(255) DEFAULT '' NOT NULL,
twitter varchar(255) DEFAULT '' NOT NULL,
attendees int(11) unsigned DEFAULT '0' NOT NULL,
suggestion tinyint(4) unsigned DEFAULT '0' NOT NULL,
social tinyint(4) unsigned DEFAULT '0' NOT NULL,
donotlink tinyint(4) unsigned DEFAULT '0' NOT NULL,
type int(11) unsigned DEFAULT '0' NOT NULL,
level int(11) unsigned DEFAULT '0' NOT NULL,
description text,
documents int(11) unsigned DEFAULT '0' NOT NULL,
speakers int(11) unsigned DEFAULT '0' NOT NULL,
day int(11) unsigned DEFAULT '0' NOT NULL,
room int(11) unsigned DEFAULT '0' NOT NULL,
slot int(11) unsigned DEFAULT '0' NOT NULL,
tags int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY enable (deleted,hidden)
);
#
# Table structure for table 'tx_sessionplaner_domain_model_tag'
#
CREATE TABLE tx_sessionplaner_domain_model_tag
(
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
label varchar(255) DEFAULT '' NOT NULL,
color varchar(255) DEFAULT '' NOT NULL,
sessions int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY enable (deleted,hidden)
);
#
# Table structure for table 'tx_sessionplaner_session_speaker_mm'
#
CREATE TABLE tx_sessionplaner_session_speaker_mm (
uid_local int(11) unsigned DEFAULT '0' NOT NULL,
uid_foreign int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) unsigned DEFAULT '0' NOT NULL,
sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL,
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
#
# Table structure for table 'tx_sessionplaner_domain_model_speaker'
#
CREATE TABLE tx_sessionplaner_domain_model_speaker
(
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
path_segment varchar(2048),
bio text,
company varchar(255) DEFAULT '' NOT NULL,
picture int(11) unsigned DEFAULT '0' NOT NULL,
website varchar(255) DEFAULT '' NOT NULL,
twitter varchar(255) DEFAULT '' NOT NULL,
linkedin varchar(255) DEFAULT '' NOT NULL,
xing varchar(255) DEFAULT '' NOT NULL,
email varchar(255) DEFAULT '' NOT NULL,
sessions int(11) unsigned DEFAULT '0' NOT NULL,
detail_page int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY enable (deleted,hidden)
);
#
# Table structure for table 'tx_sessionplaner_day_room_mm'
#
CREATE TABLE tx_sessionplaner_day_room_mm
(
uid_local int(11) DEFAULT '0' NOT NULL,
uid_foreign int(11) DEFAULT '0' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL,
tablenames varchar(255) DEFAULT '' NOT NULL,
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
#
# Table structure for table 'tx_sessionplaner_room_slot_mm'
#
CREATE TABLE tx_sessionplaner_room_slot_mm
(
uid_local int(11) DEFAULT '0' NOT NULL,
uid_foreign int(11) DEFAULT '0' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL,
tablenames varchar(255) DEFAULT '' NOT NULL,
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
#
# Table structure for table 'tx_sessionplaner_session_tag_mm'
#
CREATE TABLE tx_sessionplaner_session_tag_mm
(
uid_local int(11) DEFAULT '0' NOT NULL,
uid_foreign int(11) DEFAULT '0' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL,
tablenames varchar(255) DEFAULT '' NOT NULL,
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);