Skip to content

Commit

Permalink
updating the size of log_catagory field
Browse files Browse the repository at this point in the history
  • Loading branch information
Prem1993 committed Oct 21, 2016
1 parent 3a591d7 commit 6410065
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion databases/h2/ddls/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ CREATE TABLE process_log (
log_id bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1),
add_ts timestamp,
process_id int NOT NULL,
log_category varchar(10) NOT NULL,
log_category varchar(2048) NOT NULL,
message_id varchar(128) NOT NULL,
message varchar(1024) NOT NULL,
instance_ref bigint,
Expand Down
2 changes: 1 addition & 1 deletion databases/mysql/ddls/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ CREATE TABLE PROCESS_LOG (
LOG_ID BIGINT(20) NOT NULL AUTO_INCREMENT,
ADD_TS TIMESTAMP,
PROCESS_ID INT(11) NOT NULL,
LOG_CATEGORY VARCHAR(10) NOT NULL,
LOG_CATEGORY VARCHAR(2048) NOT NULL,
MESSAGE_ID VARCHAR(128) NOT NULL,
MESSAGE VARCHAR(1024) NOT NULL,
INSTANCE_REF BIGINT(20),
Expand Down
2 changes: 1 addition & 1 deletion databases/oracle/ddls/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ CREATE TABLE process_log (
log_id number(19,0) NOT NULL,
add_ts timestamp,
process_id number(10,0) NOT NULL,
log_category varchar2(10) NOT NULL,
log_category varchar2(2048) NOT NULL,
message_id varchar2(128) NOT NULL,
message varchar2(1024) NOT NULL,
instance_ref number(19,0),
Expand Down

0 comments on commit 6410065

Please sign in to comment.