forked from jweiland-net/events2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
32 lines (27 loc) · 814 Bytes
/
ext_tables.sql
File metadata and controls
32 lines (27 loc) · 814 Bytes
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
#
# Table structure for table 'tx_events2_domain_model_event'
#
CREATE TABLE tx_events2_domain_model_event
(
import_id varchar(255) DEFAULT '' NOT NULL,
KEY language_identifier (l10n_parent, sys_language_uid, t3ver_wsid, deleted)
);
#
# Table structure for table 'tx_events2_domain_model_day'
#
CREATE TABLE tx_events2_domain_model_day
(
is_removed_date tinyint(1) unsigned DEFAULT '0' NOT NULL,
def_lang_event_uid 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,
KEY eventType (event,type),
KEY exceptionType (exception,type)
);