1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-05 18:59:22 +00:00
discourse/db/migrate/20150514023016_add_unread_notifications_index.rb

6 lines
216 B
Ruby
Raw Normal View History

class AddUnreadNotificationsIndex < ActiveRecord::Migration[4.2]
def change
add_index :notifications, [:user_id, :notification_type], where: 'not read', name: 'idx_notifications_speedup_unread_count'
end
end