Files
LK_API_Temp/cmd/migrate/migrations/000013_password_reset.up.sql
T

8 lines
174 B
SQL

CREATE TABLE IF NOT EXISTS password_reset_requests (
token bytea PRIMARY KEY,
user_id bigint NOT NULL,
expiry TIMESTAMP(0)
WITH
TIME ZONE NOT NULL
);