all repos

onasty @ 3a9fcfa

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
);