From: David Stilwell Date: Thu, 16 May 2019 06:53:36 +0000 (+0000) Subject: Merge "Add missing table" into dublin X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=07ace1e68ec060d497183db066a0332d946d2858;hp=b1df91894e7983ec1fc39c961d3a93e96fc236b5;p=sdnc%2Foam.git Merge "Add missing table" into dublin --- diff --git a/installation/sdnc/src/main/resources/service_model.data.dump b/installation/sdnc/src/main/resources/service_model.data.dump index 8d7b103a..04949309 100644 --- a/installation/sdnc/src/main/resources/service_model.data.dump +++ b/installation/sdnc/src/main/resources/service_model.data.dump @@ -58,4 +58,15 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; +DROP TABLE IF EXISTS `SERVICE_MODEL_TO_VF_MODEL_MAPPING`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SERVICE_MODEL_TO_VF_MODEL_MAPPING` ( + `service_uuid` varchar(255) NOT NULL, + `vf_uuid` varchar(255) NOT NULL, + `vf_customization_uuid` varchar(255) NOT NULL, + `service_invariant_uuid` varchar(255) DEFAULT NULL, + PRIMARY KEY(`service_uuid`, `vf_uuid`, `vf_customization_uuid`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + -- Dump completed on 2017-10-12 20:48:44