diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-05-15 15:18:45 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-05-15 16:41:17 -0400 |
commit | f079fa56cb567d42bb56794fe412ae59b05aaf76 (patch) | |
tree | b8c459fd126ebe7564f645f9a5093a0c1cb04903 | |
parent | 2491b9195b1394a3ea785cb4837459e889cdd4d2 (diff) |
Add missing table
Add missing table SERVICE_MODEL_TO_VF_MODEL_MAPPING needed by
ueb-listener
Change-Id: Iefe0c16ad9f0e9c641f3fb9354464ae920e78838
Issue-ID: SDNC-756
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Former-commit-id: 6f863704ac02a98eda60ac58f3570c56dfdf416a
-rw-r--r-- | installation/sdnc/src/main/resources/service_model.data.dump | 11 |
1 files changed, 11 insertions, 0 deletions
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 |