all repos

onasty @ 8ecd31e7e2391c4a6bba88d5818481ba8133f5b1

a one-time notes service

onasty/migrations/20240724122920_notes_authors.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_authors (
2
    id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
3
    note_id uuid REFERENCES notes (id) ON DELETE CASCADE,
4
    user_id uuid REFERENCES users (id) ON DELETE CASCADE,
5
    created_at timestamptz NOT NULL DEFAULT now()
6
);