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

20160509201028_add_health_check_access_token_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6a5bea79b65b3595949746060f452c1d5ab5c03 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddHealthCheckAccessTokenToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :health_check_access_token, :string
  end
end