# File lib/jdbc_adapter/jdbc_mssql.rb, line 96
    def modify_types(tp)
      tp[:primary_key] = "int NOT NULL IDENTITY(1, 1) PRIMARY KEY"
      tp[:integer][:limit] = nil
      tp[:boolean][:limit] = nil
      tp[:binary] = { :name => "image"}
      tp
    end