-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Edvard Fonsell
committed
Dec 22, 2020
1 parent
4ed73d1
commit baf7e77
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
nflow-engine/src/main/resources/scripts/db/update-7.2.0-x/mysql.legacy.update.ddl.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
alter table nflow_archive_workflow modify column retries int not null; | ||
alter table nflow_archive_workflow alter column retries drop default; | ||
|
||
alter table nflow_archive_workflow_action modify column executor_id int not null; | ||
alter table nflow_archive_workflow_action alter column executor_id drop default; |
10 changes: 5 additions & 5 deletions
10
nflow-engine/src/main/resources/scripts/db/update-7.2.0-x/mysql.update.ddl.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
alter table nflow_archive_workflow modify column retries int not null; | ||
alter table nflow_archive_workflow modify column created timestamp(3); | ||
alter table nflow_archive_workflow modify column modified timestamp(3); | ||
alter table nflow_archive_workflow alter column retries drop default; | ||
alter table nflow_archive_workflow alter column created drop default; | ||
alter table nflow_archive_workflow alter column modified drop default; | ||
|
||
alter table nflow_archive_workflow_action modify column execution_start timestamp(3); | ||
alter table nflow_archive_workflow_action modify column execution_end timestamp(3); | ||
alter table nflow_archive_workflow_action alter column execution_start drop default; | ||
alter table nflow_archive_workflow_action alter column execution_end drop default; |