13 lines
No EOL
370 B
SQL
13 lines
No EOL
370 B
SQL
-- Migration: addLongTermSessions
|
|
-- Created at: 29/05/2025 10:13:46
|
|
|
|
DROP TABLE authn.user_session;
|
|
|
|
CREATE TABLE authn.long_term_session
|
|
(
|
|
id serial PRIMARY KEY,
|
|
selector varchar(16) NOT NULL,
|
|
hashed_verifier bytea NOT NULL,
|
|
expires timestamptz not null,
|
|
user_id uuid REFERENCES authn.user_identity (id)
|
|
); |