diff --git a/migration-guide.adoc b/migration-guide.adoc index 8f65a52316..4887d4f3aa 100644 --- a/migration-guide.adoc +++ b/migration-guide.adoc @@ -68,7 +68,7 @@ See the User Guide for additional details. implementations extending the built-in ones and relying on that behavior should be updated to call `SqlTypeDescriptorRegistry#addDescriptor` themselves. * The JDBC type for "big_integer" (org.hibernate.type.BigIntegerType) properties has changed from - java.sql.Types,NUMERIC to java.sql.Types.BIGINT. This change was reverted in 5.0.1.Final. + java.sql.Types.NUMERIC to java.sql.Types.BIGINT. This change was reverted in 5.0.1.Final. See <> for details. * For ids defined as UUID with generation, for some databases it is required to explicitly set the `@Column( length=16 )` in order to generate BINARY(16) so that comparisons properly work.