From a6a7f8d7586fe24b0af6df0bfec34c86036dbef7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 24 Oct 2022 10:06:17 +0200 Subject: [PATCH] Add city_zipcode3 index --- Resources/config/doctrine/Location.orm.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Resources/config/doctrine/Location.orm.yml b/Resources/config/doctrine/Location.orm.yml index ba031a0..9d26144 100644 --- a/Resources/config/doctrine/Location.orm.yml +++ b/Resources/config/doctrine/Location.orm.yml @@ -56,5 +56,10 @@ Rapsys\AirBundle\Entity\Location: #XXX: used in SessionRepository::(findAllPendingDailyWeather|findAllPendingHourlyWeather) zipcode: columns: [ zipcode ] + city_zipcode3: + columns: [ city, zipcode ] + #XXX: see https://github.com/doctrine/dbal/pull/2412 and https://stackoverflow.com/questions/32539973/configuring-index-text-length-mysql-in-doctrine + options: + lengths: [ ~, 3 ] lifecycleCallbacks: preUpdate: ['preUpdate'] -- 2.41.1