-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathext_tables.sql
58 lines (46 loc) · 1.42 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
#
# Table structure for table 'pages'
#
CREATE TABLE pages (
tx_imagecycle_mode varchar(20) DEFAULT '' NOT NULL,
tx_imagecycle_damimages varchar(20) DEFAULT '' NOT NULL,
tx_imagecycle_damcategories varchar(20) DEFAULT '' NOT NULL,
tx_imagecycle_images text,
tx_imagecycle_hrefs text,
tx_imagecycle_captions text,
tx_imagecycle_stoprecursion tinyint(3) DEFAULT '0' NOT NULL,
tx_imagecycle_effect varchar(20) DEFAULT '' NOT NULL
);
#
# Table structure for table 'pages_language_overlay'
#
CREATE TABLE pages_language_overlay (
tx_imagecycle_mode varchar(20) DEFAULT '' NOT NULL,
tx_imagecycle_damimages varchar(20) DEFAULT '' NOT NULL,
tx_imagecycle_damcategories varchar(20) DEFAULT '' NOT NULL,
tx_imagecycle_images text,
tx_imagecycle_hrefs text,
tx_imagecycle_captions text,
tx_imagecycle_stoprecursion tinyint(3) DEFAULT '0' NOT NULL,
tx_imagecycle_effect varchar(20) DEFAULT '' NOT NULL
);
#
# Table structure for table 'tt_content'
#
CREATE TABLE tt_content (
tx_imagecycle_activate tinyint(3) DEFAULT '0' NOT NULL,
tx_imagecycle_duration int(11) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'tt_news'
#
CREATE TABLE tt_news (
tx_imagecycle_activate tinyint(3) DEFAULT '0' NOT NULL,
tx_imagecycle_duration int(11) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'tx_dam'
#
CREATE TABLE tx_dam (
tx_jfdam_link varchar(255) DEFAULT '' NOT NULL
);