Files
discourse/db/migrate/20150513094042_add_index_on_post_actions.rb
2017-09-25 13:48:58 +08:00

6 lines
173 B
Ruby

class AddIndexOnPostActions < ActiveRecord::Migration[4.2]
def change
add_index :post_actions, [:user_id, :post_action_type_id], where: 'deleted_at IS NULL'
end
end