UPDATE: database
This commit is contained in:
20
db/migrations/000005_tokens.up.sql
Normal file
20
db/migrations/000005_tokens.up.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
CREATE TABLE IF NOT EXISTS user_tokens (
|
||||
id UUID PRIMARY KEY DEFAULT uuidv7(),
|
||||
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
|
||||
token VARCHAR(255) NOT NULL UNIQUE,
|
||||
token_type SMALLINT NOT NULL,
|
||||
expires_at TIMESTAMPTZ NOT NULL,
|
||||
created_at TIMESTAMPTZ DEFAULT now()
|
||||
);
|
||||
|
||||
CREATE INDEX idx_user_tokens_token
|
||||
ON user_tokens(token);
|
||||
|
||||
CREATE INDEX idx_user_tokens_user_id
|
||||
ON user_tokens(user_id);
|
||||
|
||||
CREATE INDEX idx_user_tokens_type
|
||||
ON user_tokens(token_type);
|
||||
|
||||
CREATE INDEX idx_user_tokens_expires_at
|
||||
ON user_tokens(expires_at);
|
||||
Reference in New Issue
Block a user