Skip to content

Commit eb33384

Browse files
committed
add digger job token table
1 parent 03aa7b3 commit eb33384

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
CREATE TABLE public.digger_job_tokens (
2+
id bigserial NOT NULL,
3+
created_at timestamptz NULL,
4+
updated_at timestamptz NULL,
5+
deleted_at timestamptz NULL,
6+
value text NULL,
7+
expiry timestamptz NULL,
8+
organisation_id int8 NULL,
9+
"type" text NULL,
10+
CONSTRAINT job_tokens_pkey PRIMARY KEY (id)
11+
);
12+
CREATE INDEX idx_job_tokens_deleted_at ON public.digger_job_tokens USING btree (deleted_at);

0 commit comments

Comments
 (0)