summaryrefslogtreecommitdiff
path: root/db/migrate/20180320182229_add_indexes_for_user_activity_queries.rb
blob: ba8ad1b7495b761c97d66fe1dc69d54e4003928f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class AddIndexesForUserActivityQueries < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :events, [:author_id, :project_id] unless index_exists?(:events, [:author_id, :project_id])
    add_concurrent_index :user_interacted_projects, :user_id unless index_exists?(:user_interacted_projects, :user_id)
  end

  def down
    remove_concurrent_index :events, [:author_id, :project_id] if index_exists?(:events, [:author_id, :project_id])

    remove_concurrent_index :user_interacted_projects, :user_id if index_exists?(:user_interacted_projects, :user_id)
  end
end