debian-mirror-gitlab/db/migrate/20210826170902_add_throttle_unauthenticated_api_columns.rb
2021-11-11 11:23:49 +05:30

11 lines
578 B
Ruby

# frozen_string_literal: true
class AddThrottleUnauthenticatedApiColumns < ActiveRecord::Migration[6.1]
def change
# The defaults match those from the current `throttle_unauthenticated_*` columns
add_column :application_settings, :throttle_unauthenticated_api_enabled, :boolean, default: false, null: false
add_column :application_settings, :throttle_unauthenticated_api_requests_per_period, :integer, default: 3600, null: false
add_column :application_settings, :throttle_unauthenticated_api_period_in_seconds, :integer, default: 3600, null: false
end
end