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

20200428134356_remove_elastic_experimental_indexer_from_application_settings.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9baf6fd8e355d5868c2d42e346879bb88f7da58 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
class RemoveElasticExperimentalIndexerFromApplicationSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    remove_column :application_settings, :elasticsearch_experimental_indexer, :boolean
  end
end