forked from web-vision/deepltranslate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
27 lines (23 loc) · 772 Bytes
/
ext_tables.sql
File metadata and controls
27 lines (23 loc) · 772 Bytes
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
CREATE TABLE tx_deepl_settings
(
languages_assigned text
);
CREATE TABLE tx_wvdeepltranslate_glossaryentry
(
term varchar(255) default ''
);
create table tx_wvdeepltranslate_glossary
(
glossary_ready int(2) unsigned default '0',
glossary_lastsync int(11) unsigned default '0' not null,
glossary_id varchar(60) default '',
glossary_name varchar(255) default '' not null,
source_lang varchar(10) default '' not null,
target_lang varchar(10) default '' not null
);
CREATE TABLE pages
(
tx_wvdeepltranslate_content_not_checked tinyint unsigned DEFAULT 0 NOT NULL,
tx_wvdeepltranslate_translated_time int(10) NOT NULL DEFAULT 0,
glossary_information int(11) unsigned default '0' not null
);