summaryrefslogtreecommitdiff
path: root/db/migrate/20160106164438_remove_influxdb_credentials.rb
blob: 569d5a0cf36d9c8b8b29c6eb02b352c729b94444 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class RemoveInfluxdbCredentials < ActiveRecord::Migration[4.2]
  def change
    remove_column :application_settings, :metrics_username, :string
    remove_column :application_settings, :metrics_password, :string
  end
end