aboutsummaryrefslogtreecommitdiffstats
path: root/extra/sql
diff options
context:
space:
mode:
authorsebdet <sebastien.determe@intl.att.com>2019-05-03 14:32:53 +0200
committersebdet <sebastien.determe@intl.att.com>2019-05-03 14:36:29 +0200
commit584cc4a3f093edc5cdbdff0dcb5dcbe8457e197d (patch)
tree6486a24476fc1c90d5b7ac5b5127b1b7082813d2 /extra/sql
parent109ccd46e27c1a5a244ab15c75e324e7d1a98291 (diff)
Fix log reporting
Fix loop log reported in UI, in case of failure it's not working correclty Issue-ID: CLAMP-360 Change-Id: I4533c650134b254619523d8c9cfe2791e9b6584b Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'extra/sql')
-rw-r--r--extra/sql/bulkload/create-tables.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/sql/bulkload/create-tables.sql b/extra/sql/bulkload/create-tables.sql
index 3c261eb4..da39ca5f 100644
--- a/extra/sql/bulkload/create-tables.sql
+++ b/extra/sql/bulkload/create-tables.sql
@@ -9,7 +9,7 @@
id bigint not null,
log_instant datetime(6) not null,
log_type varchar(255) not null,
- message varchar(255) not null,
+ message MEDIUMTEXT not null,
loop_id varchar(255) not null,
primary key (id)
) engine=InnoDB;