mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-04 22:04:59 +00:00
adding indexes
This commit is contained in:
@@ -9,7 +9,19 @@ use Doctrine\Common\Collections\Collection;
|
||||
/**
|
||||
* SingleTask
|
||||
*
|
||||
* @ORM\Table("chill_task.single_task")
|
||||
* @ORM\Table(
|
||||
* "chill_task.single_task",
|
||||
* indexes={
|
||||
* @ORM\Index(
|
||||
* name="by_type",
|
||||
* columns={ "type" }
|
||||
* ),
|
||||
* @ORM\Index(
|
||||
* name="by_current_state",
|
||||
* columns={ "current_states" }
|
||||
* )
|
||||
* }
|
||||
* )
|
||||
* @ORM\Entity(repositoryClass="Chill\TaskBundle\Repository\SingleTaskRepository")
|
||||
*/
|
||||
class SingleTask extends AbstractTask
|
||||
|
Reference in New Issue
Block a user