Details
Description
@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:
* @ORM\Table(name="applications", indexes={@ORM\Index(columns={"createdAt", "status", "loanType"}
), @ORM\Index(columns=
{"status"}), @ORM\Index(columns=
{"loanType"})})
index-names not specified Symfony2 schemaUpdate tools shows only the last Index