about summary refs log tree commit diff
path: root/db/migrate/20191118064252_remove_context_from_custom_filters.rb
blob: 3206e9491051ec4802f23b5b86788002de793ae4 (plain) (blame)
1
2
3
4
5
class RemoveContextFromCustomFilters < ActiveRecord::Migration[5.2]
  def change
    safety_assured { remove_column :custom_filters, :context }
  end
end