-
Notifications
You must be signed in to change notification settings - Fork 1
/
ddl-mysql.sql
19 lines (18 loc) · 1014 Bytes
/
ddl-mysql.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
CREATE TABLE wnk_translation (
id varchar(36) primary key,
msgid varchar(255) NOT NULL,
locale varchar(5) DEFAULT 'cs_CZ',
created timestamp,
last_used timestamp DEFAULT NOW(),
`status` varchar(24) default 'Original',
msgstr text
);
CREATE TABLE wnk_translation_proposed (
id varchar(36) primary key,
msgid varchar(255) NOT NULL,
locale varchar(5) DEFAULT 'cs_CZ',
`status` varchar(24) default 'ProposedByUser',
created timestamp,
createdbyip varchar(41),
msgstr text
);