Skip to content

Commit

Permalink
drop and recreate nflow_workflow_action_id_seq
Browse files Browse the repository at this point in the history
  • Loading branch information
efonsell committed Mar 29, 2021
1 parent 95fbfc2 commit 74665ca
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ alter sequence nflow_executor_id_seq nocache
alter sequence nflow_workflow_id_seq nocache
/

alter sequence nflow_workflow_action_id_seq start with nflow_workflow_id_seq.nextval nocache
drop sequence nflow_workflow_action_id_seq
/

create sequence nflow_workflow_action_id_seq start with (select max(id) + 1000 from nflow_workflow_action) nocache
/

create or replace trigger nflow_workflow_action_insert
Expand Down

0 comments on commit 74665ca

Please sign in to comment.