forked from autodudesde/ai-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
83 lines (73 loc) · 2.43 KB
/
Copy pathext_tables.sql
File metadata and controls
83 lines (73 loc) · 2.43 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
CREATE TABLE tx_aisuite_domain_model_server_prompt_template (
name varchar(255) DEFAULT '',
prompt text,
scope varchar(255) DEFAULT '',
type varchar(255) DEFAULT '',
);
CREATE TABLE tx_aisuite_domain_model_custom_prompt_template (
name varchar(255) DEFAULT '',
prompt text,
scope varchar(255) DEFAULT '',
type varchar(255) DEFAULT '',
);
CREATE TABLE tx_aisuite_domain_model_global_instructions (
name varchar(255) DEFAULT '',
instructions text,
scope varchar(255) DEFAULT '',
use_for_subtree tinyint(3) DEFAULT '0' NOT NULL,
extend_previous_instructions tinyint(3) DEFAULT '0' NOT NULL,
override_predefined_prompt tinyint(3) DEFAULT '0' NOT NULL,
context VARCHAR(255) DEFAULT '' NOT NULL,
selected_pages VARCHAR(255) DEFAULT '',
selected_directories LONGTEXT DEFAULT NULL
);
CREATE TABLE tx_aisuite_domain_model_requests (
free_requests int(10) DEFAULT '0',
paid_requests int(10) DEFAULT '0',
abo_requests int(10) DEFAULT '0',
model_type varchar(255) DEFAULT '',
api_key varchar(255) DEFAULT ''
);
CREATE TABLE tx_aisuite_domain_model_backgroundtask (
uuid varchar(128) DEFAULT '',
type varchar(255) DEFAULT '',
scope varchar(255) DEFAULT '',
colPos int(11) DEFAULT '0',
sys_language_uid int(11) DEFAULT '0',
parent_uuid varchar(64) DEFAULT '',
column varchar(255) DEFAULT '',
slug varchar(2048) DEFAULT '',
answer text,
status varchar(40) DEFAULT '',
error text,
crdate int(11) DEFAULT '0',
table_name text,
id_column text,
table_uid int(11) DEFAULT 0,
mode varchar(20) DEFAULT '',
PRIMARY KEY (uuid, type)
);
CREATE TABLE be_groups (
aiSuiteApiKey text,
openAiApiKey text,
anthropicApiKey text,
googleTranslateApiKey text,
deeplApiKey text,
deeplApiMode tinyint(3) DEFAULT '0' NOT NULL,
midjourneyApiKey text,
midjourneyId text,
mediaStorageFolder text,
openTranslatedRecordInEditMode tinyint(3) DEFAULT '1' NOT NULL
);
CREATE TABLE tx_aisuite_domain_model_glossar (
input varchar(255) DEFAULT '' NOT NULL
);
CREATE TABLE tx_aisuite_domain_model_deepl (
glossar_uuid varchar(255) DEFAULT '' NOT NULL,
root_page_uid int(11) DEFAULT 0,
source_lang varchar(10) DEFAULT '' NOT NULL,
target_lang varchar(10) DEFAULT '' NOT NULL,
default_language_id int(11) DEFAULT 0,
target_language_id int(11) DEFAULT 0,
external tinyint(3) DEFAULT '0' NOT NULL
);