gitlab-org--gitlab-foss/db/migrate/20160509201028_add_health_c...

7 lines
198 B
Ruby

# rubocop:disable all
class AddHealthCheckAccessTokenToApplicationSettings < ActiveRecord::Migration
def change
add_column :application_settings, :health_check_access_token, :string
end
end