From 82c87081b4804c013c6f34b780f1bf015d18e799 Mon Sep 17 00:00:00 2001 From: Alessandro Frangioni <> Date: Mon, 12 Jun 2017 15:41:20 +0200 Subject: [PATCH] Changed SQL declaration for custom type --- tests/Doctrine/Tests/ORM/Functional/Ticket/GH5804Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5804Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5804Test.php index 6d877711d..272d2fdbe 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5804Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5804Test.php @@ -66,7 +66,7 @@ final class GH5804Type extends Type */ public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { - return $platform->getGuidTypeDeclarationSQL($fieldDeclaration); + return $platform->getVarcharTypeDeclarationSQL($fieldDeclaration); } /**