Advertisement
Garethp

Photo ORM YML

Jul 7th, 2014
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.65 KB | None | 0 0
  1. Garethp\PhotosBundle\Entity\Photo:
  2.     type: entity
  3.     table: photos
  4.     id:
  5.         id:
  6.             type: integer
  7.             id: true
  8.             generator:
  9.                 strategy: AUTO
  10.     fields:
  11.         title:
  12.             type: string
  13.             length: 255
  14.             nullable: true
  15.         filename:
  16.             type: string
  17.             length: 255
  18.         timestamp:
  19.             type: datetime
  20.     lifecycleCallbacks:
  21.         prePersist: [ preUpload ]
  22.         postPersist: [ upload ]
  23.         preUpdate: [ preUpload ]
  24.         postUpdate: [ upload ]
  25.         preRemove: [ storeFilenameForRemove ]
  26.         postRemove: [ removeUpload ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement