mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-1965: Multiple Index fails if index name not specified #2481
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Aug 2, 2012).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user pont:
@ORM\Table(name="applications", indexes={@ORM\Index(name="csl_idx", columns={"createdAt", "status", "loanType"}), @ORM\Index(name="s_idx", columns={"status"}), @ORM\Index(name="l_idx", columns={"loanType"})})
the above Annotation creates 3 different indexes BUT when:
index-names not specified Symfony2 schemaUpdate tools shows only the last Index