all repos

onasty @ 5cf387e3510e67efa825732e36d7e0ff9a783f20

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;