-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext_tables.sql
More file actions
41 lines (38 loc) · 1.02 KB
/
ext_tables.sql
File metadata and controls
41 lines (38 loc) · 1.02 KB
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
#
# Table structure for table 'tt_content'
#
CREATE TABLE tt_content (
layout varchar(255) DEFAULT '' NOT NULL,
background varchar(255) DEFAULT '' NOT NULL,
row_gap int(11) unsigned DEFAULT '0' NOT NULL,
column_gap int(11) unsigned DEFAULT '0' NOT NULL,
gallery_row_gap int(11) unsigned DEFAULT '0' NOT NULL,
gallery_column_gap int(11) unsigned DEFAULT '0' NOT NULL,
filelink_download int(11) unsigned DEFAULT '0' NOT NULL,
);
#
# Modifying pages table
#
CREATE TABLE pages (
header_logo int(11) unsigned DEFAULT '0' NOT NULL,
footer_logo int(11) unsigned DEFAULT '0' NOT NULL,
footer_col1 mediumtext,
footer_links1 text,
footer_links2 text,
footer_links3 text,
footer_links4 text,
footer_address varchar(50),
);
#
# Modifying news table
#
CREATE TABLE tx_news_domain_model_news (
custom_media int(11) unsigned DEFAULT '0' NOT NULL,
custom_media_2 int(11) unsigned DEFAULT '0' NOT NULL,
);
#
# Modifying tt_addres table
#
CREATE TABLE tt_address (
theme_skills text,
);