]> git.mxchange.org Git - jcontacts-business-core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 26 Apr 2020 18:30:01 +0000 (20:30 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 26 Apr 2020 18:30:01 +0000 (20:30 +0200)
- updated timestamps can be null, too (ops)

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jcontactsbusiness/model/basicdata/BusinessBasicData.java
src/org/mxchange/jcontactsbusiness/model/department/BusinessDepartment.java
src/org/mxchange/jcontactsbusiness/model/headquarter/BusinessHeadquarter.java
src/org/mxchange/jcontactsbusiness/model/logo/BusinessLogo.java

index bad14b204e233a3f3001e0e4984c06b8b753e15e..d7a4c5388a4e30cc395b695824649e69222b9092 100644 (file)
@@ -118,7 +118,7 @@ public class BusinessBasicData implements BasicData {
         * Timestamp when this entry has been updated
         */
        @Temporal (TemporalType.TIMESTAMP)
-       @Column (name = "company_entry_updated", nullable = false, updatable = false)
+       @Column (name = "company_entry_updated", insertable = false)
        private Date companyEntryUpdated;
 
        /**
index 7c9092459786e8096d6a2236990c3614b3954e49..6428a13dd47959489e81162f38b180b90c43a55b 100644 (file)
@@ -95,7 +95,7 @@ public class BusinessDepartment implements Department {
         * Timestamp when this entry has been updated
         */
        @Temporal (TemporalType.TIMESTAMP)
-       @Column (name = "department_entry_updated", insertable = false, nullable = false)
+       @Column (name = "department_entry_updated", insertable = false)
        private Date departmentEntryUpdated;
 
        /**
index f26e0af7ae3754a7b1f993cd6e2a15c4da83ef03..3628640b6cdb07d1baddfed1a41f8341f1ce3278 100644 (file)
@@ -121,7 +121,7 @@ public class BusinessHeadquarter implements Headquarter {
         */
        @Basic (optional = false)
        @Temporal (TemporalType.TIMESTAMP)
-       @Column (name = "headquarter_entry_updated", insertable = false, nullable = false)
+       @Column (name = "headquarter_entry_updated", insertable = false)
        private Date headquarterEntryUpdated;
 
        /**
index f35910fd3a974c6457e4f184bdce0063d4c300b9..99a9ceb9de5a9c86d4583896cd71656491fe2fe7 100644 (file)
@@ -63,7 +63,7 @@ public class BusinessLogo implements Logo {
         * Timestamp when this entry has been created
         */
        @Temporal (TemporalType.TIMESTAMP)
-       @Column (name = "logo_entry_updated", insertable = false, nullable = false)
+       @Column (name = "logo_entry_updated", insertable = false)
        private Date logoEntryUpdated;
 
        /**