rust_forum/migrations/20250110224901_login.up.sql
Ahmet Kaan GÜMÜŞ bb2b70ccac feat: one time password
feat:  json web token
feat:  mail template
2025-01-11 17:29:18 +03:00

6 lines
No EOL
191 B
SQL

-- Add up migration script here
CREATE TABLE IF NOT EXISTS "login"(
user_id BIGSERIAL NOT NULL REFERENCES "user"(id),
token VARCHAR(1024) NOT NULL,
PRIMARY KEY (user_id, token)
);