all repos

onasty @ 35d2b54766347ebbc4d3f1e3f1cccf535c140659

a one-time notes service

onasty/migrations/20240716235210_notes.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 notes (
2
    id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
3
    content text NOT NULL,
4
    slug varchar(255) NOT NULL UNIQUE,
5
    burn_before_expiration boolean DEFAULT FALSE,
6
    created_at timestamptz NOT NULL DEFAULT now(),
7
    expires_at timestamptz
8
);