Skip to content

Commit 9c4112b

Browse files
committed
add run queue items table
1 parent 1953432 commit 9c4112b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CREATE TABLE public.digger_run_queue_items (
2+
id bigserial NOT NULL,
3+
created_at timestamptz NULL,
4+
updated_at timestamptz NULL,
5+
deleted_at timestamptz NULL,
6+
digger_run_id int8 NULL,
7+
project_id int8 NULL,
8+
CONSTRAINT digger_run_queue_items_pkey PRIMARY KEY (id)
9+
);
10+
CREATE INDEX idx_digger_run_queue_items_deleted_at ON public.digger_run_queue_items USING btree (deleted_at);
11+
CREATE INDEX idx_digger_run_queue_run_id ON public.digger_run_queue_items USING btree (digger_run_id);

0 commit comments

Comments
 (0)