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
* @ORM\Table(
* indexes={
* @ORM\Index(columns={"type"})
* },
* uniqueConstraints={
* @ORM\UniqueConstraint(columns={"type", "number"})
* }
* )
* @ORM\Table(indexes={
* @ORM\Index(columns={"type"})
* }, uniqueConstraints={
* @ORM\UniqueConstraint(columns={"type", "number"})
* })
*/
class SequenceEntry
{