2 lines
111 B
SQL
2 lines
111 B
SQL
CREATE INDEX idx_notifications_created_at_not_read ON notifications(created_at desc, read) where read is null;
|