diff options
author | Rob Daugherty <rd472p@att.com> | 2017-10-04 16:11:11 -0400 |
---|---|---|
committer | Rob Daugherty <rd472p@att.com> | 2017-10-04 16:32:12 -0400 |
commit | 3ce5262436bcfdac9c2fac07fe590f04b93761ee (patch) | |
tree | 4eae60e79abc29b435459cf9721d7d39d3bab9f3 | |
parent | 9914032106f7641b572b6d72613ef568973054df (diff) |
Fix schema mismatch
Corrected a foreign key definition in the
VNF_RES_CUSTOM_TO_VF_MODULE_CUSTOM table.
Issue: SO-180
Change-Id: I4dfb51ac615ca1dab19fbf3e0be728b2752e06bd
Signed-off-by: Rob Daugherty <rd472p@att.com>
-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 b068e66e1e..72e7209d53 100644 --- a/mso-catalog-db/src/main/resources/VnfResourceCustomization.hbm.xml +++ b/mso-catalog-db/src/main/resources/VnfResourceCustomization.hbm.xml @@ -41,8 +41,8 @@ <property name="created" type="timestamp" generated="insert" update="false" insert="false" column="CREATION_TIMESTAMP" not-null="true"/>
<set name="vfModuleCustomizations" inverse="true" cascade="all">
- <key column="VNF_RESOURCE_MODEL_UUID" not-null="true" />
- <one-to-many class="VnfResCustomToVfModuleCustom" />
- </set>
+ <key column="VF_MODULE_CUST_MODEL_CUSTOMIZATION_UUID" not-null="true" />
+ <one-to-many class="VnfResCustomToVfModuleCustom" />
+ </set>
</class>
</hibernate-mapping>
|