Files
greenlight/migrations/000005_create_tokens_table.up.sql
lbenedar efb58d7c15 ch16.2
2026-03-20 17:46:24 +03:00

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