]> git.mxchange.org Git - juser-login-core.git/commitdiff
length is for strings, not numbers
authorRoland Häder <roland@mxchange.org>
Fri, 7 Jul 2017 23:44:42 +0000 (01:44 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 7 Jul 2017 23:46:08 +0000 (01:46 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jusercore/model/user/LoginUser.java

index 8de7f6ceb6f1af06e762a87878573e6648b7cb92..da5c925c8076cf55b2bb817fefe1db3f4cee16bf 100644 (file)
@@ -114,7 +114,7 @@ public class LoginUser implements User {
         * User id
         */
        @Id
-       @Column (name = "user_id", nullable = false, length = 20, updatable = false)
+       @Column (name = "user_id", nullable = false, updatable = false)
        @GeneratedValue (strategy = GenerationType.IDENTITY)
        private Long userId;