-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathext_tables.sql
More file actions
30 lines (28 loc) · 707 Bytes
/
ext_tables.sql
File metadata and controls
30 lines (28 loc) · 707 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
#
# Table structure for table 'tx_generic_gallery_pictures'
#
CREATE TABLE tx_generic_gallery_pictures (
tt_content_id int(11) DEFAULT '0' NOT NULL,
title tinytext,
link tinytext,
images blob,
contents int(11) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'tx_generic_gallery_content'
#
CREATE TABLE tx_generic_gallery_content (
pictures_id int(11) DEFAULT '0' NOT NULL,
bodytext mediumtext,
position tinytext,
width tinytext
);
#
# Table structure for table 'pages'
#
CREATE TABLE tt_content (
tx_generic_gallery_predefined tinytext,
tx_generic_gallery_items int(11) DEFAULT '0' NOT NULL,
tx_generic_gallery_images blob,
tx_generic_gallery_collection int(11) DEFAULT '0' NOT NULL
);