Skip to content

Commit

Permalink
add digger job token table
Browse files Browse the repository at this point in the history
  • Loading branch information
motatoes committed Jul 21, 2024
1 parent 03aa7b3 commit eb33384
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions supabase/migrations/20240721112709_digger_job_tokens.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CREATE TABLE public.digger_job_tokens (
id bigserial NOT NULL,
created_at timestamptz NULL,
updated_at timestamptz NULL,
deleted_at timestamptz NULL,
value text NULL,
expiry timestamptz NULL,
organisation_id int8 NULL,
"type" text NULL,
CONSTRAINT job_tokens_pkey PRIMARY KEY (id)
);
CREATE INDEX idx_job_tokens_deleted_at ON public.digger_job_tokens USING btree (deleted_at);

0 comments on commit eb33384

Please sign in to comment.