all repos

onasty @ e8fd88d0e1e0471edc268a2e3cc3a4c00e89b6cb

a one-time notes service

onasty/migrations/20240716235210_notes.up.sql(view raw)

1
2
3
4
5
6
7
8
CREATE TABLE notes (
    id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
    content text NOT NULL,
    slug varchar(255) NOT NULL UNIQUE,
    burn_before_expiration boolean DEFAULT FALSE,
    created_at timestamptz NOT NULL DEFAULT now(),
    expires_at timestamptz
);