1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20150617080349_add_index_on_post_notifications.rb

6 lines
154 B
Ruby

class AddIndexOnPostNotifications < ActiveRecord::Migration[4.2]
def change
add_index :notifications, [:user_id, :topic_id, :post_number]
end
end