Persist native CM workflows in CatalogDB 40/88940/1
authorElena Kuleshov <evn@att.com>
Fri, 24 May 2019 14:20:56 +0000 (10:20 -0400)
committerElena Kuleshov <evn@att.com>
Fri, 24 May 2019 14:23:05 +0000 (10:23 -0400)
Add native CM workflows to Workflow table to make them available to VID

Issue-ID: SO-1942
Signed-off-by: Kuleshov, Elena <evn@att.com>
Change-Id: Ifbf3ed8a513f4704583df8a565dba97344702ede

adapters/mso-catalog-db-adapter/src/main/resources/db/migration/R__WorkflowDesignerData.sql

index fd7fcd4..3f76334 100644 (file)
@@ -196,4 +196,10 @@ VALUES
 ((select ID from activity_spec where NAME='VNFUpgradeSoftwareActivity' and VERSION=1.0),
 (select ID from user_parameters where NAME='existing_software_version')),
 ((select ID from activity_spec where NAME='VNFUpgradeSoftwareActivity' and VERSION=1.0),
-(select ID from user_parameters where NAME='new_software_version'));
\ No newline at end of file
+(select ID from user_parameters where NAME='new_software_version'));
+
+INSERT INTO `workflow` (`ARTIFACT_UUID`,`ARTIFACT_NAME`,`NAME`,`OPERATION_NAME`,`VERSION`,`DESCRIPTION`,`RESOURCE_TARGET`,`SOURCE`)
+VALUES
+('9d45cd30-1a89-4993-87c1-6dd09c1696cf','VFModule-ScaleOut','VNF Scale Out','ScaleOut',1.0,'native static workflow to support ScaleOut','vfModule','native'),
+('da6478e4-ea33-3346-ac12-ab121284a333','VnfInPlaceUpdate.bpmn','VNF In Place Software Update','inPlaceSoftwareUpdate',1.0,'native static workflow to support inPlaceSoftwareUpdate','vnf','native'),
+('fdb3ac48-70f9-4584-bd92-253bdbdec1e1','VnfConfigUpdate.bpmn','VNF Config Update','applyConfigModify',1.0,'native static workflow to support applyConfigModify','vnf','native');
\ No newline at end of file