debian-mirror-gitlab/db/migrate/20200605093113_add_ip_address_to_audit_events.rb
2020-06-23 00:09:42 +05:30

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