Fix migration syntax

This commit is contained in:
Julie Lenaerts 2023-11-21 12:13:27 +01:00
parent 0ea6f36297
commit 75d80ebd98

View File

@ -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 {}