Files
go-playground/projects/greenlight/migrations/000005_create_tokens_table.up.sql
T

8 lines
205 B
SQL

CREATE TABLE IF NOT EXISTS tokens (
hash bytea PRIMARY KEY,
user_id bigint NOT NULL REFERENCES users ON DELETE CASCADE,
expiry timestamp(0) with time zone NOT NULL,
scope text NOT NULL
);