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