class ActiveRecord::ConnectionAdapters::Column

def ==(other)

def ==(other)
  other.is_a?(Column) &&
    name == other.name &&
    default == other.default &&
    sql_type_metadata == other.sql_type_metadata &&
    null == other.null &&
    default_function == other.default_function &&
    collation == other.collation &&
    comment == other.comment
end