From 3ec55d0cdd88e9d2feff1ddb871eb09520967261 Mon Sep 17 00:00:00 2001 From: Toni Uebernickel Date: Tue, 13 Sep 2011 20:32:04 +0200 Subject: [PATCH] fix sequence generator php code on sequenceName --- en/reference/basic-mapping.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/reference/basic-mapping.rst b/en/reference/basic-mapping.rst index e29760a4a..1fa585a58 100644 --- a/en/reference/basic-mapping.rst +++ b/en/reference/basic-mapping.rst @@ -557,7 +557,7 @@ besides specifying the sequence's name: /** * @Id * @GeneratedValue(strategy="SEQUENCE") - * @SequenceGenerator(name="tablename_seq", initialValue=1, allocationSize=100) + * @SequenceGenerator(sequenceName="tablename_seq", initialValue=1, allocationSize=100) */ protected $id = null; }