Merge "Add new cols to TOSCA tables"
authorDavid Stilwell <stilwelld@att.com>
Tue, 11 Sep 2018 20:45:41 +0000 (20:45 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 11 Sep 2018 20:45:41 +0000 (20:45 +0000)
installation/sdnc/src/main/resources/vf_model.data.dump
installation/sdnc/src/main/resources/vf_module_model.data.dump

index e98783f..6e528e5 100644 (file)
@@ -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 */;
index 91e336f..bd3139c 100644 (file)
@@ -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 */;