aboutsummaryrefslogtreecommitdiffstats
path: root/extra/sql
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2019-03-12 15:08:11 +0100
committersebdet <sebastien.determe@intl.att.com>2019-03-12 15:25:11 +0100
commit92cc4185fca63ddd882be5bcd9d4a626b627164f (patch)
tree802a20de3520e90c1ad737ede5a057fa99ed115d /extra/sql
parente3d4f773fd3c3078384aef77ff1f45612ff53356 (diff)
Add unit tests
Add unit tests and fix code to support them, columns modified and csar installer fixed as well Issue-ID: CLAMP-306 Change-Id: I946ef1aa957ca36bbb00357308ac67a3f07dcdce Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'extra/sql')
-rw-r--r--extra/sql/bulkload/create-tables.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/sql/bulkload/create-tables.sql b/extra/sql/bulkload/create-tables.sql
index 6d490c30..93c80cb3 100644
--- a/extra/sql/bulkload/create-tables.sql
+++ b/extra/sql/bulkload/create-tables.sql
@@ -16,7 +16,7 @@
create table loops (
name varchar(255) not null,
- blueprint_yaml varchar(255) not null,
+ blueprint_yaml MEDIUMTEXT not null,
dcae_blueprint_id varchar(255),
dcae_deployment_id varchar(255),
dcae_deployment_status_url varchar(255),
@@ -36,7 +36,7 @@
create table micro_service_policies (
name varchar(255) not null,
json_representation json not null,
- policy_tosca varchar(255) not null,
+ policy_tosca MEDIUMTEXT not null,
properties json,
shared bit not null,
primary key (name)