12345678910111213141516171819202122232425262728293031323334 |
- Entity\LinkCategory:
- type: entity
- table: c_link_category
- repositoryClass: Entity\Repository\LinkCategoryRepository
- fields:
- c_id:
- id: true
- type: integer
- unsigned: false
- nullable: false
- id:
- id: true
- type: integer
- unsigned: false
- nullable: false
- category_title:
- type: string
- length: 255
- fixed: false
- nullable: false
- description:
- type: text
- nullable: true
- display_order:
- type: integer
- unsigned: false
- nullable: false
- session_id:
- type: integer
- unsigned: false
- nullable: true
- lifecycleCallbacks:
- prePersist:
- - before_save
|