summaryrefslogtreecommitdiffstats
path: root/asdc-controller/src/test/resources/schema.sql
diff options
context:
space:
mode:
authorSteve Smokowski <ss835w@att.com>2019-02-07 11:14:32 +0000
committerGerrit Code Review <gerrit@onap.org>2019-02-07 11:14:32 +0000
commitdb2fb3ef8992c12b3be11ab3f6634bf23da1abe9 (patch)
treebe1d7d88e0f58698496fb3b7debba4ab7af27b3b /asdc-controller/src/test/resources/schema.sql
parent8195d32a2056fcd875001c4e569242506020940a (diff)
parent9e795bea4075ab0f5666c173c822f5a443ea5449 (diff)
Merge "store raw distribution notification in db"
Diffstat (limited to 'asdc-controller/src/test/resources/schema.sql')
-rw-r--r--asdc-controller/src/test/resources/schema.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/asdc-controller/src/test/resources/schema.sql b/asdc-controller/src/test/resources/schema.sql
index 17423f8434..010b36dcf1 100644
--- a/asdc-controller/src/test/resources/schema.sql
+++ b/asdc-controller/src/test/resources/schema.sql
@@ -1008,6 +1008,8 @@ CREATE TABLE `watchdog_per_component_distribution_status` (
CREATE TABLE `watchdog_service_mod_ver_id_lookup` (
`DISTRIBUTION_ID` varchar(45) NOT NULL,
`SERVICE_MODEL_VERSION_ID` varchar(45) NOT NULL,
+ `DISTRIBUTION_NOTIFICATION` LONGTEXT NULL,
+ `CONSUMER_ID` varchar(200) NULL,
`CREATE_TIME` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`MODIFY_TIME` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`DISTRIBUTION_ID`,`SERVICE_MODEL_VERSION_ID`)