-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
supabase/migrations/20240721110522_digger_job_parent_link.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |