debian-mirror-gitlab/db/migrate/20160509201028_add_health_check_access_token_to_application_settings.rb

7 lines
198 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-06-02 11:05:42 +05:30
class AddHealthCheckAccessTokenToApplicationSettings < ActiveRecord::Migration
def change
add_column :application_settings, :health_check_access_token, :string
end
end