all repos

onasty @ 164a37ba21c3c0c386d8d388b5e54844e3991f62

a one-time notes service

onasty/migrations/20240724122920_notes_authors.up.sql(view raw)

1
2
3
4
5
6
CREATE TABLE notes_authors (
    id uuid PRIMARY KEY DEFAULT uuid_generate_v4 (),
    note_id uuid REFERENCES notes (id) ON DELETE CASCADE,
    user_id uuid REFERENCES users (id) ON DELETE CASCADE,
    created_at timestamptz NOT NULL DEFAULT now()
);