From: Timoney, Dan (dt5972) Date: Tue, 11 Sep 2018 18:12:50 +0000 (-0400) Subject: Add new cols to TOSCA tables X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=ddc835f1f1f2544c84bf4682ee0fcb05ccc14b33;p=sdnc%2Foam.git Add new cols to TOSCA tables Added new columns to VF_MODEL and VF_MODULE_MODEL tables, used for TOSCA ingestion. Change-Id: Id7b7ca1415babb0ae63887419b699651bc562917 Issue-ID: SDNC-440 Signed-off-by: Timoney, Dan (dt5972) --- diff --git a/installation/sdnc/src/main/resources/vf_model.data.dump b/installation/sdnc/src/main/resources/vf_model.data.dump index e98783fe..6e528e52 100644 --- a/installation/sdnc/src/main/resources/vf_model.data.dump +++ b/installation/sdnc/src/main/resources/vf_model.data.dump @@ -38,6 +38,9 @@ CREATE TABLE `VF_MODEL` ( `nf_role` varchar(255) DEFAULT NULL, `vendor` varchar(255) DEFAULT NULL, `vendor_version` varchar(255) DEFAULT NULL, + `sdnc_model_name` varchar(255) DEFAULT NULL, + `sdnc_model_version` varchar(255) DEFAULT NULL, + `sdnc_artifact_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`customization_uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; diff --git a/installation/sdnc/src/main/resources/vf_module_model.data.dump b/installation/sdnc/src/main/resources/vf_module_model.data.dump index 91e336f2..bd3139c2 100644 --- a/installation/sdnc/src/main/resources/vf_module_model.data.dump +++ b/installation/sdnc/src/main/resources/vf_module_model.data.dump @@ -31,6 +31,8 @@ CREATE TABLE `VF_MODULE_MODEL` ( `vf_module_type` varchar(255) DEFAULT NULL, `availability_zone_count` int(11) DEFAULT NULL, `ecomp_generated_vm_assignments` char(1) DEFAULT NULL, + `vf_customization_uuid` varchar(255) DEFAULT NULL, + `vf_module_label` varchar(255) DEFAULT NULL, PRIMARY KEY (`customization_uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */;