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: 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