forked from greenfieldr/golb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
29 lines (27 loc) · 781 Bytes
/
ext_tables.sql
File metadata and controls
29 lines (27 loc) · 781 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
#
# Table structure for table 'pages'
#
CREATE TABLE pages (
tx_golb_subpages int(11) DEFAULT '0' NOT NULL,
tx_golb_view_count int(11) DEFAULT '0' NOT NULL,
tx_golb_related varchar(255) DEFAULT NULL,
tx_golb_content_elements int(11) DEFAULT '0' NOT NULL,
tx_golb_author_image int(11) unsigned DEFAULT '0'
);
#
# Table structure for table 'sys_category'
#
CREATE TABLE sys_category (
tx_golb_sub_categories int(11) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'tt_content'
#
CREATE TABLE tt_content (
tx_golb_sorting varchar(255) DEFAULT NULL,
tx_golb_sorting_direction varchar(255) DEFAULT NULL,
tx_golb_limit int(4) DEFAULT NULL,
tx_golb_offset int(4) DEFAULT NULL,
tx_golb_action varchar(40) DEFAULT '' NOT NULL,
tx_golb_exclude text NOT NULL
);