From 91ba8167dcf018e2b64911f79cfed4f2caee6faa Mon Sep 17 00:00:00 2001 From: Jason Gessner Date: Thu, 27 Jan 2022 00:03:16 -0600 Subject: [PATCH] Fix the Claim entity to escape the rank column as it is a MySQL reserved word. --- src/AppBundle/Resources/config/doctrine/Claim.orm.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AppBundle/Resources/config/doctrine/Claim.orm.yml b/src/AppBundle/Resources/config/doctrine/Claim.orm.yml index d12608c0..a58a4d99 100644 --- a/src/AppBundle/Resources/config/doctrine/Claim.orm.yml +++ b/src/AppBundle/Resources/config/doctrine/Claim.orm.yml @@ -36,6 +36,7 @@ AppBundle\Entity\Claim: type: string length: '255' rank: + column: "`rank`" type: smallint participants: type: smallint