class ActiveRecord::ConnectionAdapters::SQLite3::Column

def ==(other)

def ==(other)
  other.is_a?(Column) &&
    super &&
    auto_increment? == other.auto_increment?
end