summaryrefslogtreecommitdiffstats
path: root/installation
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dtimoney@att.com>2019-05-15 15:18:45 -0400
committerTimoney, Dan (dt5972) <dtimoney@att.com>2019-05-15 16:39:14 -0400
commitca2bc3fbd5767abe04cf85a880b6706ec8c676f1 (patch)
treeb4e93426dc9db29f7248f2d51ceb6e95cbcbddb1 /installation
parent3f42311634b3a2b25dee786fecb3d83f94e419e4 (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: 6951dc59889a812cdeb7382b40ff858f0d999f01
Diffstat (limited to 'installation')
-rw-r--r--installation/sdnc/src/main/resources/service_model.data.dump11
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