openstreetmap-website/db/migrate/20231101222146_api_rate_limit.rb

13 lines
248 B
Ruby

class ApiRateLimit < ActiveRecord::Migration[7.1]
def up
safety_assured do
execute DatabaseFunctions::API_RATE_LIMIT
end
end
def down
safety_assured do
execute "DROP FUNCTION api_rate_limit(bigint)"
end
end
end