all repos

onasty @ a9ae72ba6d9d01fcc52c5cd4577e93e3aefb8602

a one-time notes service

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

Smirnov Oleksandr Smirnov Oleksandr
ss2316544@gmail.com
run pg_format on all sql files (#45), 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
);