Skip to content

Commit 1546c2c

Browse files
committed
add job parent links table
1 parent 9c4112b commit 1546c2c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
CREATE TABLE public.digger_job_parent_links (
2+
id uuid not null default gen_random_uuid (),
3+
created_at timestamptz NULL,
4+
updated_at timestamptz NULL,
5+
deleted_at timestamptz NULL,
6+
github_installation_id int8 NULL,
7+
github_app_id int8 NULL,
8+
account_id int8 NULL,
9+
login text NULL,
10+
repo text NULL,
11+
status int8 NULL,
12+
CONSTRAINT digger_job_parent_links_pkey PRIMARY KEY (id)
13+
);
14+
CREATE INDEX idx_digger_job_parent_links_deleted_at ON public.digger_job_parent_links USING btree (deleted_at);

0 commit comments

Comments
 (0)