-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
51 lines (46 loc) · 1.58 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
#
# Table structure for table 'be_groups'
#
CREATE TABLE be_groups
(
universal_messenger_channels text
);
#
# Table structure for table 'be_users'
#
CREATE TABLE be_users
(
universal_messenger_channels text
);
#
# Table structure for table 'pages'
#
CREATE TABLE pages
(
universal_messenger_channel int(11) unsigned DEFAULT '0' NOT NULL
);
#
# Table structure for table 'tx_universalmessenger_domain_model_newsletterchannel'
#
CREATE TABLE tx_universalmessenger_domain_model_newsletterchannel
(
uid int(11) unsigned 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 smallint(5) unsigned DEFAULT '0' NOT NULL,
hidden smallint(5) unsigned DEFAULT '0' NOT NULL,
starttime int(11) unsigned DEFAULT '0' NOT NULL,
endtime int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) unsigned DEFAULT '0' NOT NULL,
channel_id varchar(255) NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
description text DEFAULT '' NOT NULL,
sender varchar(255) DEFAULT '' NOT NULL,
reply_to varchar(255) DEFAULT '' NOT NULL,
skip_used_id smallint(5) unsigned DEFAULT '0' NOT NULL,
embed_images varchar(255) DEFAULT 'none' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY channelId (channel_id)
);