From bc76f330927022c98540652ab522207518472274 Mon Sep 17 00:00:00 2001 From: Douglas Greenshields Date: Mon, 18 Jun 2012 19:21:44 +0100 Subject: [PATCH] added missing JoinColumn node for xml and yaml for many-to-one unidirectional mapping --- en/reference/association-mapping.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/en/reference/association-mapping.rst b/en/reference/association-mapping.rst index 91e5c7149..aebfc5fa1 100644 --- a/en/reference/association-mapping.rst +++ b/en/reference/association-mapping.rst @@ -359,7 +359,9 @@ with the following: - + + + @@ -370,6 +372,9 @@ with the following: manyToOne: address: targetEntity: Address + joinColumn: + name: address_id + referencedColumnName: id .. note::