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"); + } +}