module ActiveRecord::Migration::Compatibility::V6_1::TableDefinition

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

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

def new_column_definition(name, type, **options)

def new_column_definition(name, type, **options)
  type = PostgreSQLCompat.compatible_timestamp_type(type, @conn)
  super
end