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

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

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

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

def raise_on_if_exist_options(options)

def raise_on_if_exist_options(options)
end