all repos

onasty @ c24198aff6c81e08e99ba6c8cda4d671c09338bc

a one-time notes service

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

1
2
3
4
5
6
CREATE TABLE sessions (
    id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
    user_id uuid REFERENCES users (id),
    refresh_token varchar(255) NOT NULL UNIQUE,
    expires_at timestamptz NOT NULL
);