Fix #6494 - translations code for reports
[Pman.Core] / sql / translations.sql
1
2
3 -- depricated use core_template templatestr etc..
4
5 CREATE TABLE  translations (
6   id int(11)  NOT NULL AUTO_INCREMENT,
7   PRIMARY KEY (id)
8 );
9
10 alter table  translations ADD COLUMN    module varchar(64)  NOT NULL DEFAULT '';
11 alter table  translations ADD COLUMN    tfile varchar(128) NOT NULL DEFAULT '';
12 alter table  translations ADD COLUMN    tlang varchar(8)  NOT NULL DEFAULT '';
13 alter table  translations ADD COLUMN    tkey varchar(32)  NOT NULL DEFAULT '';
14 alter table  translations ADD COLUMN    tval longtext ;
15
16
17 ALTER TABLE translations ADD INDEX qlookup (module, tfile, tlang, tkey);
18
19
20