summaryrefslogtreecommitdiff
path: root/db/migrate/20160802010328_remove_builds_enable_index_on_projects.rb
blob: 4ad740e0812819a2434b4c2d1795a108acadcf36 (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable RemoveIndex
class RemoveBuildsEnableIndexOnProjects < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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