We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a562833 commit bb0d012Copy full SHA for bb0d012
postgres/initdb.sql
@@ -93,7 +93,8 @@ CREATE TABLE IF NOT EXISTS results_temp (
93
end_time timestamp,
94
result int,
95
app_version varchar,
96
- client_type varchar
+ client_type varchar,
97
+ ref jsonb
98
);
99
100
-- create table for results import through csv
@@ -192,6 +193,7 @@ CREATE TABLE IF NOT EXISTS mapping_sessions_results (
192
193
mapping_session_id int8,
194
task_id varchar,
195
result int2 not null,
196
+ ref jsonb,
197
PRIMARY KEY (mapping_session_id, task_id),
198
FOREIGN KEY (mapping_session_id)
199
references mapping_sessions (mapping_session_id)
0 commit comments