1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- Entity\ForumPost:
- type: entity
- table: c_forum_post
- repositoryClass: Entity\Repository\ForumPostRepository
- fields:
- c_id:
- id: true
- type: integer
- unsigned: false
- nullable: false
- post_id:
- id: true
- type: integer
- unsigned: false
- nullable: false
- post_title:
- type: string
- length: 250
- fixed: false
- nullable: true
- post_text:
- type: text
- nullable: true
- thread_id:
- type: integer
- unsigned: false
- nullable: true
- forum_id:
- type: integer
- unsigned: false
- nullable: true
- poster_id:
- type: integer
- unsigned: false
- nullable: true
- poster_name:
- type: string
- length: 100
- fixed: false
- nullable: true
- post_date:
- type: datetime
- nullable: true
- post_notification:
- type: boolean
- nullable: true
- post_parent_id:
- type: integer
- unsigned: false
- nullable: true
- visible:
- type: boolean
- nullable: true
- lifecycleCallbacks:
- prePersist:
- - before_save
|