Skip to content

Commit

Permalink
fix mysql upgrade scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Edvard Fonsell committed Dec 22, 2020
1 parent 4ed73d1 commit baf7e77
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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;
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;

0 comments on commit baf7e77

Please sign in to comment.