diff options
author | Sébastien Determe <sebastien.determe@intl.att.com> | 2020-02-10 09:52:42 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-02-10 09:52:42 +0000 |
commit | b398c32d092ca7ca14fa37d22fae6cbc1710e66e (patch) | |
tree | 06f46938dfc31e6c891b52b0658d1c091354434a /extra | |
parent | 899c22fccf12f50a877988c62e30d5e2c7fb7e3c (diff) | |
parent | 81c1344c018e995e4f6f906435d0faab3480e13b (diff) |
Merge "Update get Dcae Status flow"
Diffstat (limited to 'extra')
-rw-r--r-- | extra/sql/bulkload/create-tables.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/sql/bulkload/create-tables.sql b/extra/sql/bulkload/create-tables.sql index 103276501..819d92591 100644 --- a/extra/sql/bulkload/create-tables.sql +++ b/extra/sql/bulkload/create-tables.sql @@ -62,6 +62,7 @@ dcae_blueprint_id varchar(255), maximum_instances_allowed integer, svg_representation MEDIUMTEXT, + unique_blueprint boolean default false, service_uuid varchar(255), primary key (name) ) engine=InnoDB; @@ -84,7 +85,7 @@ global_properties_json json, last_computed_state varchar(255) not null, svg_representation MEDIUMTEXT, - loop_template_name varchar(255), + loop_template_name varchar(255) not null, service_uuid varchar(255), primary key (name) ) engine=InnoDB; |