Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200605093113_add_ip_address_to_audit_events.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f5694ddce2ac08c0578148e76eca412b09ae499 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddIpAddressToAuditEvents < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :audit_events, :ip_address, :inet
  end
end