all repos

onasty @ eab9b2ccfb37b6dac1c99ff93098fbf505a47f5a

a one-time notes service

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

Smirnov Oleksandr Smirnov Oleksandr
ss2316544@gmail.com
feat: notes manipulations for the note authors (#117)..., 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
);