Skip to content

Commit cefd231

Browse files
committed
migrations: Add datasets-runs join table
1 parent a6a3e02 commit cefd231

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

migrations/20220218210416_create_schema.sql

+12
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,18 @@ create table datasets (
8787
unique(name)
8888
);
8989

90+
create table datasets_runs (
91+
id serial primary key,
92+
93+
dataset_id integer not null,
94+
run_id integer not null,
95+
96+
foreign key (dataset_id) references datasets (id),
97+
foreign key (run_id) references runs (id)
98+
);
99+
100+
create index counts_dataset_id_run_id_idx on datasets_runs(dataset_id, run_id);
101+
90102
create type status as enum ('queued', 'running', 'success', 'failed');
91103

92104
create table tasks (

0 commit comments

Comments
 (0)