summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200428134356_remove_elastic_experimental_indexer_from_application_settings.rb
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