class ActiveRecord::Migration::Current

def change_table(table_name, **options)

def change_table(table_name, **options)
  if block_given?
    super { |t| yield compatible_table_definition(t) }
  else
    super
  end
end