aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/application/src/main
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2022-05-23 16:20:49 +0000
committerGerrit Code Review <gerrit@onap.org>2022-05-23 16:20:49 +0000
commitb4cbb0ee94eb086a2355998189bd94fedc503c79 (patch)
treeb241343b41a4999746886674b4148875243182df /ms/blueprintsprocessor/application/src/main
parentc71ec674f81560753730ac39647d773600ecc418 (diff)
parent0094e13ddec035faf7f80943783943003f12889a (diff)
Merge "CCSDK-3671 add workflows list for grpc"
Diffstat (limited to 'ms/blueprintsprocessor/application/src/main')
-rw-r--r--ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql b/ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql
index 851adcf6c..84cce281e 100644
--- a/ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql
+++ b/ms/blueprintsprocessor/application/src/main/resources/sql/schema.sql
@@ -22,6 +22,7 @@ CREATE TABLE IF NOT EXISTS configurator.BLUEPRINT_MODEL (
published varchar(1) not null,
updated_by varchar(100) not null,
tags longtext null default null,
+ workflows longtext null default null,
primary key PK_BLUEPRINT_MODEL (blueprint_model_id),
UNIQUE KEY UK_BLUEPRINT_MODEL (artifact_name , artifact_version)
) ENGINE=InnoDB;