reformat @ORM\Table

This commit is contained in:
Robin Krahnen 2021-09-22 14:26:09 +02:00
parent ced940247c
commit 19b58b9c26

View file

@ -9,14 +9,11 @@ use Neos\Flow\Annotations as Flow;
/** /**
* @Flow\Entity * @Flow\Entity
* @ORM\Table( * @ORM\Table(indexes={
* indexes={ * @ORM\Index(columns={"type"})
* @ORM\Index(columns={"type"}) * }, uniqueConstraints={
* }, * @ORM\UniqueConstraint(columns={"type", "number"})
* uniqueConstraints={ * })
* @ORM\UniqueConstraint(columns={"type", "number"})
* }
* )
*/ */
class SequenceEntry class SequenceEntry
{ {