Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160106164438_remove_influxdb_credentials.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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