all repos

onasty @ 304505a348c9cfc3ff0cb5d4e38658aab963f3ef

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