diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2017-09-21 07:29:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-21 07:29:38 +0000 |
commit | 882bbc63d781b189be1824de52149734b92f4557 (patch) | |
tree | 60a96db426de6db1aca47a059c989fad5e0da79b | |
parent | 419f4630b5f714af34d3a020babc8291a882cddc (diff) | |
parent | e78220176c2f98299d09d528a726aa644fe6667f (diff) |
Merge "Bad foreign key in VNF_RESOURCE_CUSTOMIZATION"
-rw-r--r-- | mso-catalog-db/src/main/resources/VnfResourceCustomization.hbm.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mso-catalog-db/src/main/resources/VnfResourceCustomization.hbm.xml b/mso-catalog-db/src/main/resources/VnfResourceCustomization.hbm.xml index a3e738bbed..b068e66e1e 100644 --- a/mso-catalog-db/src/main/resources/VnfResourceCustomization.hbm.xml +++ b/mso-catalog-db/src/main/resources/VnfResourceCustomization.hbm.xml @@ -40,9 +40,9 @@ <property name="created" type="timestamp" generated="insert" update="false" insert="false" column="CREATION_TIMESTAMP" not-null="true"/>
- <set name="serviceResourceCustomizations" inverse="true" cascade="all">
- <key column="SERVICE_MODEL_UUID" not-null="true" />
- <one-to-many class="ServiceToResourceCustomization" />
+ <set name="vfModuleCustomizations" inverse="true" cascade="all">
+ <key column="VNF_RESOURCE_MODEL_UUID" not-null="true" />
+ <one-to-many class="VnfResCustomToVfModuleCustom" />
</set>
</class>
</hibernate-mapping>
|