]> git.mxchange.org Git - jjobs-lib.git/commitdiff
Continued a bit:
authorRoland Haeder <roland@mxchange.org>
Thu, 7 Apr 2016 09:27:00 +0000 (11:27 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 7 Apr 2016 10:38:56 +0000 (12:38 +0200)
- size only applies for strings, no need here (cleanup)
- updated jar(s)

lib/jcontacts-business-core.jar
lib/jcontacts-core.jar
lib/jcountry-core.jar
lib/jphone-core.jar
lib/juser-core.jar
src/org/mxchange/jjobs/model/addressbook/UserAddressbook.java
src/org/mxchange/jjobs/model/addressbook/shared/AddressbookShare.java

index 013d74b23ea236ad95f335cf8378688cbf982a9b..a8151da6d40692530a7b4bf7689518580f3874c3 100644 (file)
Binary files a/lib/jcontacts-business-core.jar and b/lib/jcontacts-business-core.jar differ
index 6c00138861dd02dae05115842913099b8f9d10f7..59559efe241a09d9c37e438697cafbb84fa98ae1 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index 49be2e4aa7b60c8ea2109ed5fbe2002af4911630..01a8041b9818458cfcaf5783e01d872b7be6d95c 100644 (file)
Binary files a/lib/jcountry-core.jar and b/lib/jcountry-core.jar differ
index c997cecc6f5630b8b2bb4b4420787610650dc450..be67aae9533634e3354ff8cb71c1428268e64e72 100644 (file)
Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ
index 7a5f4c53513c18407f787533376971a2847632d3..5d51db160dd34f57e4396d21845d8b83d6ca675d 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index 61574804c23a47bfe77ea5cf5959534ed2b2543e..272dcac76cd10a17d6df9770eb18c402c1888dbf 100644 (file)
@@ -73,7 +73,7 @@ public class UserAddressbook implements Addressbook {
         */
        @Id
        @GeneratedValue (strategy = GenerationType.IDENTITY)
-       @Column (name = "addressbook_id", length = 20, nullable = false, updatable = false)
+       @Column (name = "addressbook_id", nullable = false, updatable = false)
        private Long addressbookId;
 
        /**
index e79863a75b91452102b579ddd7d1cae184d37dc4..c538c52a4927d8ace8165b61381f9415bd9f0841 100644 (file)
@@ -85,7 +85,7 @@ public class AddressbookShare implements ShareableAddressbook {
         */
        @Id
        @GeneratedValue (strategy = GenerationType.IDENTITY)
-       @Column (name = "share_id", length = 20, nullable = false, updatable = false)
+       @Column (name = "share_id", nullable = false, updatable = false)
        private Long shareId;
 
        /**