diff options
author | ktimoney <kevin.timoney@est.tech> | 2021-08-17 16:59:09 +0100 |
---|---|---|
committer | ktimoney <kevin.timoney@est.tech> | 2021-08-17 16:59:40 +0100 |
commit | ca6ead6157b8a01e865f644418ed4f4d88029e07 (patch) | |
tree | f6bc82aac2af43230c48481fda0e47be15a360a9 /main/src | |
parent | 74490bbcd676080bc0949ca5125a984af51deacc (diff) |
Update Policy Components not to create tables
Issue-ID: POLICY-3488
Change-Id: I945a19eb6bd7b943adaedc1ea836ec6030c9b001
Signed-off-by: ktimoney <kevin.timoney@est.tech>
Diffstat (limited to 'main/src')
-rw-r--r-- | main/src/main/resources/META-INF/persistence.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/main/resources/META-INF/persistence.xml b/main/src/main/resources/META-INF/persistence.xml index f3fdcc4b..c2cf972d 100644 --- a/main/src/main/resources/META-INF/persistence.xml +++ b/main/src/main/resources/META-INF/persistence.xml @@ -3,6 +3,7 @@ ============LICENSE_START======================================================= Copyright (C) 2019-2021 Nordix Foundation. Modifications Copyright (C) 2021 AT&T Intellectual Property. + Modification Copyright 2021. Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -58,9 +59,8 @@ <class>org.onap.policy.models.tosca.simple.concepts.JpaToscaTrigger</class> <properties> - <property name="javax.persistence.schema-generation.database.action" value="create" /> - <property name="eclipselink.ddl-generation" value="create-or-extend-tables" /> - <property name="eclipselink.ddl-generation.output-mode" value="database" /> + <property name="javax.persistence.schema-generation.database.action" value="none" /> + <property name="eclipselink.ddl-generation" value="none" /> <property name="eclipselink.logging.level" value="INFO" /> </properties> </persistence-unit> |