From 702b8b33090ca3d67d3c388ec2d1a7362250b447 Mon Sep 17 00:00:00 2001 From: Christopher Gross Date: Tue, 12 May 2015 14:16:02 +0200 Subject: [PATCH] add default value for GeneratedValue --- docs/en/reference/annotations-reference.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en/reference/annotations-reference.rst b/docs/en/reference/annotations-reference.rst index d6d700b83..a96a265f1 100644 --- a/docs/en/reference/annotations-reference.rst +++ b/docs/en/reference/annotations-reference.rst @@ -357,11 +357,12 @@ conjunction with @Id. If this annotation is not specified with @Id the NONE strategy is used as default. -Required attributes: +Optional attributes: - **strategy**: Set the name of the identifier generation strategy. Valid values are AUTO, SEQUENCE, TABLE, IDENTITY, UUID, CUSTOM and NONE. + If not specified, default value is AUTO. Example: