debian-mirror-gitlab/db/migrate/20160802010328_remove_builds_enable_index_on_projects.rb

11 lines
287 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
# rubocop:disable RemoveIndex
2018-12-23 12:14:25 +05:30
class RemoveBuildsEnableIndexOnProjects < ActiveRecord::Migration[4.2]
2016-09-13 17:45:13 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
remove_index :projects, column: :builds_enabled if index_exists?(:projects, :builds_enabled)
end
end