Skip to content

Commit

Permalink
add job parent links table
Browse files Browse the repository at this point in the history
  • Loading branch information
motatoes committed Jul 21, 2024
1 parent 9c4112b commit 1546c2c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions supabase/migrations/20240721110522_digger_job_parent_link.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
CREATE TABLE public.digger_job_parent_links (
id uuid not null default gen_random_uuid (),
created_at timestamptz NULL,
updated_at timestamptz NULL,
deleted_at timestamptz NULL,
github_installation_id int8 NULL,
github_app_id int8 NULL,
account_id int8 NULL,
login text NULL,
repo text NULL,
status int8 NULL,
CONSTRAINT digger_job_parent_links_pkey PRIMARY KEY (id)
);
CREATE INDEX idx_digger_job_parent_links_deleted_at ON public.digger_job_parent_links USING btree (deleted_at);

0 comments on commit 1546c2c

Please sign in to comment.