2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-05-21 12:04:55 -07:00
|
|
|
class AllowNullIpTopicLinkClick < ActiveRecord::Migration[5.1]
|
|
|
|
|
def up
|
|
|
|
|
begin
|
|
|
|
|
Migration::SafeMigrate.disable!
|
|
|
|
|
change_column :topic_link_clicks, :ip_address, :inet, null: true
|
|
|
|
|
ensure
|
|
|
|
|
Migration::SafeMigrate.enable!
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|