diff options
author | Steve Smokowski <ss835w@att.com> | 2019-12-18 21:00:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-12-18 21:00:33 +0000 |
commit | 65f706774bfd515efffb9afab407913eb9d1c08b (patch) | |
tree | 80413ad11d9225fa275f949f0ffaf721c87079b5 /mso-catalog-db/src/test/resources | |
parent | b55a3a35b75653f9804821432d95ae769ea494b5 (diff) | |
parent | b39509088a320c5c60b26f74ced3f420d217c376 (diff) |
Merge "Implementing scope and action values from SO-DB to SO-Backend"
Diffstat (limited to 'mso-catalog-db/src/test/resources')
-rw-r--r-- | mso-catalog-db/src/test/resources/schema.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mso-catalog-db/src/test/resources/schema.sql b/mso-catalog-db/src/test/resources/schema.sql index 5668ae5718..9037e431d4 100644 --- a/mso-catalog-db/src/test/resources/schema.sql +++ b/mso-catalog-db/src/test/resources/schema.sql @@ -736,6 +736,8 @@ CREATE TABLE `orchestration_flow_reference` ( `SEQ_NO` int(11) NOT NULL, `FLOW_NAME` varchar(200) NOT NULL, `FLOW_VERSION` double NOT NULL, + `SCOPE` varchar(200) DEFAULT NULL, + `ACTION` varchar(200) DEFAULT NULL, `NB_REQ_REF_LOOKUP_ID` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `UK_orchestration_flow_reference` (`COMPOSITE_ACTION`,`FLOW_NAME`,`SEQ_NO`,`NB_REQ_REF_LOOKUP_ID`), |