From e43bbaf1a173cf41039fbb4f5cfb5e37ed0e558e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 6 Nov 2019 11:46:45 +0100 Subject: [PATCH] add indexfor searching by phonenumber --- .../migrations/Version20191106103452.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Resources/migrations/Version20191106103452.php diff --git a/Resources/migrations/Version20191106103452.php b/Resources/migrations/Version20191106103452.php new file mode 100644 index 000000000..5b27fe7e5 --- /dev/null +++ b/Resources/migrations/Version20191106103452.php @@ -0,0 +1,30 @@ +addSql("CREATE INDEX phonenumber_trgm_idx + ON public.chill_person_person USING gin + (phonenumber gin_trgm_ops)"); + + $this->addSql("CREATE INDEX mobilenumber_trgm_idx + ON public.chill_person_person USING gin + (mobilenumber gin_trgm_ops)"); + + } + + public function down(Schema $schema) : void + { + $this->addSql("DROP INDEX phonenumber_trgm_idx"); + $this->addSql("DROP INDEX mobilenumber_trgm_idx"); + } +}