summaryrefslogtreecommitdiff
path: root/db/migrate/20210826170902_add_throttle_unauthenticated_api_columns.rb
blob: 675da2ea41c0020c37ff5409ffbc0fd9336678c9 (plain)
1
2
3
4
5
6
7
8
9
10
# 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