Advertisement
Guest User

symfonytry2

a guest
May 21st, 2010
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. Contactpersoon:
  2. connection: doctrine
  3. tableName: contactpersoon
  4. columns:
  5. contactpersoon_id:
  6. type: integer(4)
  7. fixed: false
  8. unsigned: false
  9. primary: true
  10. autoincrement: true
  11. voornaam:
  12. type: string(15)
  13. fixed: false
  14. unsigned: false
  15. primary: false
  16. notnull: true
  17. autoincrement: false
  18. relations:
  19. Locatie:
  20. class: Locatie
  21. refClass: ContactRegel
  22. local: contactpersoon_id
  23. foreign: loc_id
  24. Organisatie:
  25. class: Organisatie
  26. refClass: ContactRegel
  27. local: contactpersoon_id
  28. foreign: org_id
  29. Locatie:
  30. connection: doctrine
  31. tableName: locatie
  32. columns:
  33. loc_id:
  34. type: integer(4)
  35. fixed: false
  36. unsigned: false
  37. primary: true
  38. autoincrement: true
  39. org_id:
  40. type: integer(4)
  41. fixed: false
  42. unsigned: false
  43. primary: false
  44. notnull: false
  45. autoincrement: false
  46. naam:
  47. type: string(30)
  48. fixed: false
  49. unsigned: false
  50. primary: false
  51. notnull: true
  52. autoincrement: false
  53. relations:
  54. Organisatie:
  55. local: org_id
  56. foreign: org_id
  57. type: one
  58. onDelete: SET NULL
  59. onUpdate: CASCADE
  60. Contactpersoon:
  61. class: Contactpersoon
  62. refClass: ContactRegel
  63. local: loc_id
  64. foreign: contactpersoon_id
  65. Organisatie:
  66. connection: doctrine
  67. tableName: organisatie
  68. columns:
  69. org_id:
  70. type: integer(4)
  71. fixed: false
  72. unsigned: false
  73. primary: true
  74. autoincrement: true
  75. naam:
  76. type: string(30)
  77. fixed: false
  78. unsigned: false
  79. primary: false
  80. notnull: true
  81. autoincrement: false
  82. relations:
  83. Locatie:
  84. local: org_id
  85. foreign: org_id
  86. type: many
  87. Contactpersoon:
  88. class: Contactpersoon
  89. refClass: ContactRegel
  90. local: org_id
  91. foreign: contactpersoon_id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement