001package io.ebean.config.dbplatform.sqlserver; 002 003import io.ebean.annotation.Platform; 004import io.ebean.config.dbplatform.DbPlatformType; 005import io.ebean.config.dbplatform.DbType; 006 007/** 008 * Microsoft SQL Server platform - NVarchar UTF types and Sequence preference. 009 */ 010public class SqlServer17Platform extends SqlServerBasePlatform { 011 012 public SqlServer17Platform() { 013 super(); 014 this.platform = Platform.SQLSERVER17; 015 this.nativeUuidType = true; 016 this.dbTypeMap.put(DbType.UUID, new DbPlatformType("uniqueidentifier", false)); 017 } 018 019}