Files
oott/backend/database_migrations/05-add_notifications_indexes/up.sql
T

3 lines
171 B
SQL
Raw Normal View History

CREATE INDEX idx_notifications_created_on ON notifications (created_on DESC);
CREATE INDEX idx_notifications_is_new_created_on ON notifications (is_new, created_on DESC);