gitlab-org--gitlab-foss/db/post_migrate/20200428134356_remove_elast...

9 lines
253 B
Ruby

# frozen_string_literal: true
class RemoveElasticExperimentalIndexerFromApplicationSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
remove_column :application_settings, :elasticsearch_experimental_indexer, :boolean
end
end