Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.70 KB | None | 0 0
  1. Entity\Circonscription:
  2.     type: entity
  3.     table: Circonscription
  4.     id:
  5.         id:
  6.             type: integer
  7.     fields:
  8.         libelle:
  9.             type: string
  10.             length: 75
  11.             nullable: true
  12.     uniqueConstraints:
  13.         id_UNIQUE:
  14.             columns: [ id ]
  15.     oneToMany:
  16.         etablissements:
  17.             targetEntity: Etablissement
  18.             mappedBy: circonscription
  19.             joinColumn:
  20.                 name: id
  21.                 referencedColumnName: circo_id
  22.         formations:
  23.             targetEntity: Formation
  24.             mappedBy: circonscription
  25.             joinColumn:
  26.                 name: id
  27.                 referencedColumnName: circo_id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement