module ActiveRecord::Migration::Compatibility::V5_2::TableDefinition

def column(name, type, index: nil, **options)

def column(name, type, index: nil, **options)
  options[:precision] ||= nil
  super
end

def timestamps(**options)

def timestamps(**options)
  options[:precision] ||= nil
  super
end