[2.0] DDC-186 - Fixed SchemaTool indexes behaviour, changed a functional/integration model to use one index for test-coverage.
This commit is contained in:
parent
94cf75b9ac
commit
466e96b491
2 changed files with 2 additions and 2 deletions
|
@ -194,7 +194,7 @@ class SchemaTool
|
||||||
|
|
||||||
if (isset($class->primaryTable['indexes'])) {
|
if (isset($class->primaryTable['indexes'])) {
|
||||||
foreach ($class->primaryTable['indexes'] AS $indexName => $indexData) {
|
foreach ($class->primaryTable['indexes'] AS $indexName => $indexData) {
|
||||||
$table->addIndex($indexData, $indexName);
|
$table->addIndex($indexData['columns'], $indexName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ use Doctrine\Common\Collections\ArrayCollection;
|
||||||
*
|
*
|
||||||
* @author Giorgio Sironi
|
* @author Giorgio Sironi
|
||||||
* @Entity
|
* @Entity
|
||||||
* @Table(name="ecommerce_products")
|
* @Table(name="ecommerce_products",indexes={@index(name="name_idx", columns={"name"})})
|
||||||
*/
|
*/
|
||||||
class ECommerceProduct
|
class ECommerceProduct
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue