Updated the migration scripts to use all caps for table names (#288)
* Updated the migration scripts to use all caps for table names In the original migration scripts the table names were all lower case. However the original table definitions were capitalized, and on file systems that are case sensitive, mysql fails to update the table. Because of the 2 different cases. resolves #287 * Updated the 1.1.x branch migration scripts In the original migration scripts the table names were all lower case. However the original table definitions were capitalized, and on file systems that are case sensitive, mysql fails to update the table. Because of the 2 different cases. * Added migration script for db2.
This commit is contained in:
committed by
Thomas Risberg
parent
929117b365
commit
80812beee8
@@ -1,4 +1,4 @@
|
||||
/* If migrating from 1.1.0.M1 to 1.1.0.RELEASE you do not need to add
|
||||
the ERROR_MESSAGE column. */
|
||||
alter table task_execution add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table task_execution add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
alter table TASK_EXECUTION add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table TASK_EXECUTION add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* If migrating from 1.1.0.M1 to 1.1.0.RELEASE you do not need to add
|
||||
the ERROR_MESSAGE column. */
|
||||
alter table task_execution add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table task_execution add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
alter table TASK_EXECUTION add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table TASK_EXECUTION add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/* If migrating from 1.1.0.M1 to 1.1.0.RELEASE you do not need to add
|
||||
the ERROR_MESSAGE column. */
|
||||
alter table task_execution add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table task_execution add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
alter table TASK_EXECUTION add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table TASK_EXECUTION add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/* If migrating from 1.1.0.M1 to 1.1.0.RELEASE you do not need to add
|
||||
the ERROR_MESSAGE column. */
|
||||
alter table task_execution add ERROR_MESSAGE varchar2(2500);
|
||||
alter table task_execution add EXTERNAL_EXECUTION_ID varchar2(255);
|
||||
alter table TASK_EXECUTION add ERROR_MESSAGE varchar2(2500);
|
||||
alter table TASK_EXECUTION add EXTERNAL_EXECUTION_ID varchar2(255);
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* If migrating from 1.1.0.M1 to 1.1.0.RELEASE you do not need to add
|
||||
the ERROR_MESSAGE column. */
|
||||
alter table task_execution add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table task_execution add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
alter table TASK_EXECUTION add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table TASK_EXECUTION add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/* If migrating from 1.1.0.M1 to 1.1.0.RELEASE you do not need to add
|
||||
the ERROR_MESSAGE column. */
|
||||
alter table task_execution add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table task_execution add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
alter table TASK_EXECUTION add ERROR_MESSAGE VARCHAR(2500);
|
||||
alter table TASK_EXECUTION add EXTERNAL_EXECUTION_ID VARCHAR(255);
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
alter table TASK_EXECUTION add PARENT_EXECUTION_ID BIGINT;
|
||||
@@ -1 +1 @@
|
||||
alter table task_execution add PARENT_EXECUTION_ID BIGINT;
|
||||
alter table TASK_EXECUTION add PARENT_EXECUTION_ID BIGINT;
|
||||
|
||||
@@ -1 +1 @@
|
||||
alter table task_execution add PARENT_EXECUTION_ID BIGINT;
|
||||
alter table TASK_EXECUTION add PARENT_EXECUTION_ID BIGINT;
|
||||
|
||||
@@ -1 +1 @@
|
||||
alter table task_execution add PARENT_EXECUTION_ID BIGINT;
|
||||
alter table TASK_EXECUTION add PARENT_EXECUTION_ID BIGINT;
|
||||
|
||||
@@ -1 +1 @@
|
||||
alter table task_execution add PARENT_EXECUTION_ID NUMBER;
|
||||
alter table TASK_EXECUTION add PARENT_EXECUTION_ID NUMBER;
|
||||
|
||||
@@ -1 +1 @@
|
||||
alter table task_execution add PARENT_EXECUTION_ID BIGINT;
|
||||
alter table TASK_EXECUTION add PARENT_EXECUTION_ID BIGINT;
|
||||
|
||||
@@ -1 +1 @@
|
||||
alter table task_execution add PARENT_EXECUTION_ID BIGINT;
|
||||
alter table TASK_EXECUTION add PARENT_EXECUTION_ID BIGINT;
|
||||
|
||||
Reference in New Issue
Block a user