golang-server-template/migrations/000005_create_tokens_table.up.sql
2024-07-08 17:36:56 +08:00

6 lines
195 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
);