123456789101112131415161718192021222324252627282930313233 |
- ---
- Mapping\Fixture\Yaml\Sortable:
- type: entity
- table: sortables
- id:
- id:
- type: integer
- generator:
- strategy: AUTO
- fields:
- title:
- type: string
- length: 32
- position:
- type: integer
- gedmo:
- - sortablePosition
- grouping:
- type: string
- length: 128
- gedmo:
- - sortableGroup
- manyToOne:
- sortable_group:
- targetEntity: Mapping\Fixture\SortableGroup
- gedmo:
- - sortableGroup
- manyToMany:
- sortable_groups:
- targetEntity: Mapping\Fixture\SortableGroup
- gedmo:
- - sortableGroup
|