Skip to content

Commit

Permalink
Merge 479ca35 into b3159b4
Browse files Browse the repository at this point in the history
  • Loading branch information
ttiurani committed May 30, 2019
2 parents b3159b4 + 479ca35 commit f38d548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Add started timestamp to workflow instance table. This makes the instance queries much faster when instances have lots of actions, as there is no need to join the nflow_workflow_action table to the query anymore.
- Deprecated WorkflowInstanceInclude.STARTED enum value. This is not needed anymore, since the started timestamp is always read from the database when the instance is loaded.
- Moved default implementations for `WorkflowExecutorListener` interface methods from the abstract class to the interface.
- Fixed bug with dropping non-existent index in PostgreSQL create script.
- Dependency updates:
- reactor.netty 0.8.8.RELEASE
- jetty 9.4.18.v20190429
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ end;
drop trigger if exists update_nflow_modified on nflow_workflow;
create trigger update_nflow_modified before update on nflow_workflow for each row execute procedure update_modified();

drop index nflow_workflow_activation;
drop index if exists nflow_workflow_activation;
create index nflow_workflow_activation on nflow_workflow(next_activation, modified);

create type action_type as enum ('stateExecution', 'stateExecutionFailed', 'recovery', 'externalChange');
Expand Down

0 comments on commit f38d548

Please sign in to comment.