blob: 47e74400b97af7cc8c74bf83b63347ef370046c6 (
plain)
1
2
3
4
5
6
|
class RemoveInfluxdbCredentials < ActiveRecord::Migration
def change
remove_column :application_settings, :metrics_username, :string
remove_column :application_settings, :metrics_password, :string
end
end
|