forked from thieleundklose/tk-typo3-autotranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
38 lines (35 loc) · 1.15 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
#
# Table structure for extending table 'pages'
#
CREATE TABLE pages (
autotranslate_exclude tinyint(4) DEFAULT '0' NOT NULL,
autotranslate_languages varchar(255) DEFAULT NULL,
autotranslate_last int(11) DEFAULT '0' NOT NULL,
);
#
# Table structure for extending table 'tt_content'
#
CREATE TABLE tt_content (
autotranslate_exclude tinyint(4) DEFAULT '0' NOT NULL,
autotranslate_languages varchar(255) DEFAULT NULL,
autotranslate_last int(11) DEFAULT '0' NOT NULL,
);
#
# Table structure for extending table 'tx_news_domain_model_news'
#
CREATE TABLE tx_news_domain_model_news (
-- Bugfix:
-- Sql statement includes uid to prevent db compare bug if news extension is installed after autotranslate.
uid int(11) NOT NULL auto_increment,
autotranslate_exclude tinyint(4) DEFAULT '0' NOT NULL,
autotranslate_languages varchar(255) DEFAULT NULL,
autotranslate_last int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
);
#
# Table structure for extending table 'sys_file_reference'
#
CREATE TABLE sys_file_reference (
autotranslate_exclude tinyint(4) DEFAULT '0' NOT NULL,
autotranslate_last int(11) DEFAULT '0' NOT NULL,
);