I keep running the schema update command and seeing ALTERs generated with 
new index names for a JoinColumn annotation on one of my entities. I 
actually have a covering index specified in the @Table annotation, but the 
update command yields an ALTER to drop the current index and add a new one 
with what appears to be a random hash. Is there anyway to force the name of 
an index created for one of these joins?

Just to be clear, this is what I'm seeing:

./app/console doctrine:schema:update --dump-sql
DROP INDEX idx_e03f1304bd2a4c0 ON report_parameter;
CREATE INDEX IDX_423FC084BD2A4C0 ON report_parameter (report_id);

Thanks for your help,
Stan

-- 
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