From 75d80ebd98ac7f4829670af57241a0ecbe4783b2 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Tue, 21 Nov 2023 12:13:27 +0100 Subject: [PATCH] Fix migration syntax --- .../ChillPersonBundle/migrations/Version20231121070151.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/migrations/Version20231121070151.php b/src/Bundle/ChillPersonBundle/migrations/Version20231121070151.php index 9b913d336..1123ef1c3 100644 --- a/src/Bundle/ChillPersonBundle/migrations/Version20231121070151.php +++ b/src/Bundle/ChillPersonBundle/migrations/Version20231121070151.php @@ -26,7 +26,7 @@ final class Version20231121070151 extends AbstractMigration public function up(Schema $schema): void { - $this->addSql('UPDATE chill_person_person SET gender = "both" WHERE gender = "neuter"'); + $this->addSql("UPDATE chill_person_person SET gender = 'both' WHERE chill_person_person.gender = 'neuter'"); } public function down(Schema $schema): void {}