-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathext_tables.sql
158 lines (143 loc) · 4.95 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
#
# Table structure for table 'tx_events2_domain_model_event'
#
CREATE TABLE tx_events2_domain_model_event
(
event_type varchar(255) DEFAULT '' NOT NULL,
top_of_list tinyint(1) unsigned DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
path_segment varchar(2048) DEFAULT '' NOT NULL,
teaser varchar(255) DEFAULT '' NOT NULL,
event_begin int(11) DEFAULT '0' NOT NULL,
event_end int(11) DEFAULT '0' NOT NULL,
event_time int(11) unsigned DEFAULT '0',
same_day tinyint(1) unsigned DEFAULT '0' NOT NULL,
multiple_times int(11) unsigned DEFAULT '0' NOT NULL,
xth int(11) DEFAULT '0' NOT NULL,
weekday int(11) DEFAULT '0' NOT NULL,
different_times int(11) unsigned DEFAULT '0' NOT NULL,
each_weeks int(11) DEFAULT '0' NOT NULL,
each_months int(11) DEFAULT '0' NOT NULL,
recurring_end int(11) DEFAULT '0' NOT NULL,
exceptions int(11) DEFAULT '0' NOT NULL,
detail_information text,
free_entry tinyint(1) unsigned DEFAULT '0' NOT NULL,
ticket_link varchar(11) DEFAULT '' NOT NULL,
days int(11) unsigned DEFAULT '0' NOT NULL,
location int(11) unsigned DEFAULT '0',
organizers int(11) unsigned DEFAULT '0',
images int(11) unsigned DEFAULT '0',
video_link varchar(11) DEFAULT '' NOT NULL,
download_links varchar(255) DEFAULT '' NOT NULL,
import_id varchar(255) DEFAULT '' NOT NULL,
KEY path_segment (path_segment(185), uid)
);
#
# Table structure for table 'tx_events2_domain_model_day'
#
CREATE TABLE tx_events2_domain_model_day
(
day int(11) unsigned DEFAULT '0' NOT NULL,
day_time int(11) unsigned DEFAULT '0' NOT NULL,
sort_day_time int(11) unsigned DEFAULT '0' NOT NULL,
same_day_time int(11) unsigned DEFAULT '0' NOT NULL,
is_removed_date tinyint(1) unsigned DEFAULT '0' NOT NULL,
event int(11) unsigned DEFAULT '0' NOT NULL,
KEY keyForDay (day),
KEY booster (event,pid,hidden,day,sort_day_time,day_time,tstamp,crdate,uid)
);
#
# Table structure for table 'tx_events2_domain_model_time'
#
CREATE TABLE tx_events2_domain_model_time
(
type varchar(50) DEFAULT '' NOT NULL,
weekday varchar(10) DEFAULT '' NOT NULL,
time_begin varchar(5) DEFAULT '' NOT NULL,
time_entry varchar(5) DEFAULT '' NOT NULL,
duration varchar(5) DEFAULT '' NOT NULL,
time_end varchar(5) DEFAULT '' NOT NULL,
event int(11) unsigned DEFAULT '0' NOT NULL,
exception int(11) unsigned DEFAULT '0' NOT NULL,
KEY eventType (event,type)
);
#
# Table structure for table 'tx_events2_domain_model_exception'
#
CREATE TABLE tx_events2_domain_model_exception
(
exception_type varchar(255) DEFAULT '' NOT NULL,
exception_date int(11) DEFAULT '0' NOT NULL,
exception_time int(11) unsigned DEFAULT '0',
exception_details text,
show_anyway tinyint(1) unsigned DEFAULT '0' NOT NULL,
mark_as varchar(255) DEFAULT '' NOT NULL,
event int(11) unsigned DEFAULT '0' NOT NULL,
KEY events (event)
);
#
# Table structure for table 'tx_events2_domain_model_location'
#
CREATE TABLE tx_events2_domain_model_location
(
location varchar(255) DEFAULT '' NOT NULL,
street varchar(255) DEFAULT '' NOT NULL,
house_number varchar(10) DEFAULT '' NOT NULL,
zip varchar(10) DEFAULT '' NOT NULL,
city varchar(255) DEFAULT '' NOT NULL,
country int(11) unsigned DEFAULT '0',
link int(11) unsigned DEFAULT '0'
);
#
# Table structure for table 'tx_events2_domain_model_organizer'
#
CREATE TABLE tx_events2_domain_model_organizer
(
organizer varchar(255) DEFAULT '' NOT NULL,
hide_in_filter tinyint(1) DEFAULT '0' NOT NULL,
link int(11) unsigned DEFAULT '0'
);
#
# Table structure for table 'tx_events2_domain_model_link'
#
CREATE TABLE tx_events2_domain_model_link
(
title varchar(255) DEFAULT '' NOT NULL,
link varchar(255) DEFAULT '' NOT NULL
);
#
# Table structure for table 'tx_events2_domain_model_holiday'
#
CREATE TABLE tx_events2_domain_model_holiday
(
title varchar(255) DEFAULT '' NOT NULL,
day int(2) unsigned DEFAULT '0' NOT NULL,
month int(2) unsigned DEFAULT '0' NOT NULL
);
#
# Table structure for table 'tx_events2_event_organizer_mm'
#
CREATE TABLE tx_events2_event_organizer_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 'fe_users'
#
CREATE TABLE fe_users
(
tx_events2_organizer int(11) unsigned DEFAULT '0' NOT NULL
);
#
# Table structure for table 'sys_reaction'
#
CREATE TABLE sys_reaction
(
storage_folder varchar(255) DEFAULT '' NOT NULL,
parent_category int(10) DEFAULT '0' NOT NULL
);