SortableGroup.php 339 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Mapping\Fixture;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * @ORM\Table(name="test_sortable_groups")
  6. * @ORM\Entity
  7. */
  8. class SortableGroup
  9. {
  10. /**
  11. * @ORM\Column(type="integer")
  12. * @ORM\Id
  13. * @ORM\GeneratedValue
  14. */
  15. private $id;
  16. /**
  17. * @ORM\Column(length=64)
  18. */
  19. private $name;
  20. }