-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathext_tables.sql
45 lines (30 loc) · 1.31 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
CREATE TABLE tx_datamintslocallangbuilder_domain_model_extension (
name varchar(255) DEFAULT '' NOT NULL,
path varchar(255) DEFAULT '' NOT NULL,
local smallint(5) unsigned DEFAULT '0' NOT NULL,
locallangs int(11) unsigned DEFAULT '0' NOT NULL
);
CREATE TABLE tx_datamintslocallangbuilder_domain_model_locallang (
extension int(11) unsigned DEFAULT '0' NOT NULL,
filename varchar(255) DEFAULT '' NOT NULL,
path varchar(255) DEFAULT '' NOT NULL,
invalid_format smallint(5) unsigned DEFAULT '0' NOT NULL,
translations int(11) unsigned DEFAULT '0' NOT NULL,
related_extension int(11) unsigned DEFAULT '0'
);
CREATE TABLE tx_datamintslocallangbuilder_domain_model_translation (
locallang int(11) unsigned DEFAULT '0' NOT NULL,
translation_key varchar(255) DEFAULT '' NOT NULL,
translation_values int(11) unsigned DEFAULT '0' NOT NULL,
related_locallang int(11) unsigned DEFAULT '0'
);
CREATE TABLE tx_datamintslocallangbuilder_domain_model_translationvalue (
translation int(11) unsigned DEFAULT '0' NOT NULL,
ident varchar(255) DEFAULT '' NOT NULL,
value text,
resname text,
xml_space varchar(255) DEFAULT '' NOT NULL,
approved smallint(5) unsigned DEFAULT '0' NOT NULL,
comment text
);
## EXTENSION BUILDER DEFAULTS END TOKEN - Everything BEFORE this line is overwritten with the defaults of the extension builder