Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160802010328_remove_builds_enable_index_on_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d7733762c81126b0708549c7789d993b525b1be (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable RemoveIndex
class RemoveBuildsEnableIndexOnProjects < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    remove_index :projects, column: :builds_enabled if index_exists?(:projects, :builds_enabled)
  end
end