Hi,

We have a custom SQL query we need to run after each 
doctrine:schema:update. This query creates a custom PostgreSQL Gist index 
which we couldn't manage to create via Doctrine:

CREATE INDEX locations_gist_index
ON locations
USING gist
(location);

Unfortunately doctrine:schema:update always deletes this index, so we need 
to put it back after each run. How can we accomplish this? Any idea is 
appreciated. :) Is there a custom config we can add, should we override one 
of Doctrine's classes, should we try using an event, etc.

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"doctrine-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/doctrine-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to