This is an automated email from the ASF dual-hosted git repository.
isjarana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-data-lake.git
The following commit(s) were added to refs/heads/master by this push:
new 6eecd24 Bug fix in Resource property
new ae2007d Merge pull request #125 from isururanawaka/mysql_conversion
6eecd24 is described below
commit 6eecd24b63244c1295542e8061a92bc7dd885b92
Author: Isuru Ranawaka <[email protected]>
AuthorDate: Thu Aug 11 16:06:41 2022 -0400
Bug fix in Resource property
---
.../airavata/drms/api/persistance/model/ResourceProperty.java | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git
a/data-resource-management-service/drms-rdbms-impl/drms-server/src/main/java/org/apache/airavata/drms/api/persistance/model/ResourceProperty.java
b/data-resource-management-service/drms-rdbms-impl/drms-server/src/main/java/org/apache/airavata/drms/api/persistance/model/ResourceProperty.java
index 6efc21e..2fd8c5c 100644
---
a/data-resource-management-service/drms-rdbms-impl/drms-server/src/main/java/org/apache/airavata/drms/api/persistance/model/ResourceProperty.java
+++
b/data-resource-management-service/drms-rdbms-impl/drms-server/src/main/java/org/apache/airavata/drms/api/persistance/model/ResourceProperty.java
@@ -5,9 +5,11 @@ import
org.springframework.data.jpa.domain.support.AuditingEntityListener;
import javax.persistence.*;
@Entity
-@Table(name = "resource_property",uniqueConstraints={
- @UniqueConstraint( name = "idx_key_vaule", columnNames
={"key","vaule","resource_id"})
-})
+@Table
+//
+// (name = "resource_property",uniqueConstraints={
+// @UniqueConstraint( name = "idx_key_vaule", columnNames
={"key","vaule","resource_id"})
+//})
@EntityListeners(AuditingEntityListener.class)
public class ResourceProperty {