all repos

onasty @ e73c44f

a one-time notes service

onasty/migrations/20240613092532_sessions.up.sql (view raw)

Smirnov Oleksandr Smirnov Oleksandr
ss2316544@gmail.com
feat: notes manipulations for the note authors (#117)..., 1 year ago
1
CREATE TABLE sessions (
2
    id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
3
    user_id uuid REFERENCES users (id),
4
    refresh_token varchar(255) NOT NULL UNIQUE,
5
    expires_at timestamptz NOT NULL
6
);