From 62d5d1ab2ceaa8a5b0e3e4241c43941b45a63adb Mon Sep 17 00:00:00 2001 From: Vivek Shankar Date: Mon, 29 Apr 2019 16:08:27 +0530 Subject: [PATCH] Fixed typo --- migration-guide.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.