gitlab-org--gitlab-foss/db/migrate/20200605093113_add_ip_addre...

10 lines
186 B
Ruby

# frozen_string_literal: true
class AddIpAddressToAuditEvents < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :audit_events, :ip_address, :inet
end
end