all repos

onasty @ 4850d623a769de42500c7839a42d4e01b88d1056

a one-time notes service

onasty/migrations/20250811132505_note_nullable_read_at.up.sql (view raw)

Olexandr Smirnov Olexandr Smirnov
ss2316544@gmail.com
refactor: make the `read_at` field nullable (#187)..., 9 months ago
1
ALTER TABLE notes
2
  ALTER COLUMN "read_at" DROP NOT NULL,
3
  ALTER COLUMN "read_at" SET DEFAULT NULL;