Files
greenlight/migrations/000005_create_tokens_table.up.sql
lbenedar 0eaad4ed13 ch15.2
2026-03-20 15:13:23 +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
};