login
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE auth_sessions (
|
||||
session_id VARCHAR NOT NULL PRIMARY KEY,
|
||||
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE,
|
||||
expires_at TIMESTAMP NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
||||
Reference in New Issue
Block a user