diff options
author | David Stilwell <stilwelld@att.com> | 2018-09-11 20:45:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-11 20:45:41 +0000 |
commit | a2c8ec3e4812451e2f81eee1b27eb60c1fee98dd (patch) | |
tree | 868e8bd03cf6a77099533251df7f39aa95754daf | |
parent | ccafed4a80fc103c2758454bd9d4b960dc16efca (diff) | |
parent | 535415b6d98c3ae441eeab65734cc792990d01ed (diff) |
Merge "Add new cols to TOSCA tables"
Former-commit-id: c54e3d3870560d0aca3238ee46a0eab381425fbb
-rw-r--r-- | installation/sdnc/src/main/resources/vf_model.data.dump | 3 | ||||
-rw-r--r-- | installation/sdnc/src/main/resources/vf_module_model.data.dump | 2 |
2 files changed, 5 insertions, 0 deletions
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 */; |