debian-mirror-gitlab/db/post_migrate/20200428134356_remove_elastic_experimental_indexer_from_application_settings.rb
2020-05-24 23:13:21 +05:30

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