diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-01-28 16:28:21 +0100 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2020-01-30 13:36:45 +0100 |
commit | b9a6531c7a5cfc5a9a544a21fe8c47914be9699b (patch) | |
tree | 1ea3d0b0ead027878083e1dbebb3e2da24efae00 /extra/sql/bulkload | |
parent | e0a8ab9bd315aecde32e0163c9d233ec29df9d51 (diff) |
Change the Csar installer
Change the csar installer so that it installs a loop template instead of
a loop object
Issue-ID: CLAMP-592
Change-Id: I757f6411ce959573fcb3a82e48359a1a44f87410
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'extra/sql/bulkload')
-rw-r--r-- | extra/sql/bulkload/create-tables.sql | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extra/sql/bulkload/create-tables.sql b/extra/sql/bulkload/create-tables.sql index 352b66175..92e36f075 100644 --- a/extra/sql/bulkload/create-tables.sql +++ b/extra/sql/bulkload/create-tables.sql @@ -36,7 +36,8 @@ created_timestamp datetime(6) not null, updated_by varchar(255), updated_timestamp datetime(6) not null, - blueprint_yaml varchar(255) not null, + blueprint_yaml MEDIUMTEXT not null, + dcae_blueprint_id varchar(255), loop_element_type varchar(255) not null, primary key (name) ) engine=InnoDB; @@ -58,6 +59,7 @@ updated_by varchar(255), updated_timestamp datetime(6) not null, blueprint_yaml MEDIUMTEXT, + dcae_blueprint_id varchar(255), maximum_instances_allowed integer, svg_representation MEDIUMTEXT, service_uuid varchar(255), @@ -77,7 +79,6 @@ created_timestamp datetime(6) not null, updated_by varchar(255), updated_timestamp datetime(6) not null, - blueprint_yaml MEDIUMTEXT not null, dcae_blueprint_id varchar(255), dcae_deployment_id varchar(255), dcae_deployment_status_url varchar(255), |