From 2f25ee1c05ddeafbd5734de1950876ef8d8daa53 Mon Sep 17 00:00:00 2001 From: Redkale <22250530@qq.com> Date: Fri, 21 Oct 2016 10:11:32 +0800 Subject: [PATCH] --- src/javax/persistence/Column.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/javax/persistence/Column.java b/src/javax/persistence/Column.java index a4f6e1dc3..163b961a3 100644 --- a/src/javax/persistence/Column.java +++ b/src/javax/persistence/Column.java @@ -61,6 +61,13 @@ public @interface Column { */ String name() default ""; + /** + * (Optional) The comment of the column. + * + * @return String + */ + String comment() default ""; + /** * (Optional) Whether the column is a unique key. This is a * shortcut for the UniqueConstraint annotation at the table