Skip to content

Commit

Permalink
fix function call syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
skovati committed Jul 8, 2024
1 parent 5ed73b9 commit d880c30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ alter table scheduler.scheduling_goal_definition

drop type scheduler.goal_type;

call migrations.mark_migration_rolled_back('8')
call migrations.mark_migration_rolled_back('8');

commit;
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ alter table scheduler.scheduling_goal_analysis_created_activities
add constraint created_activities_primary_key
primary key (analysis_id, goal_id, goal_revision, goal_invocation_id, activity_id);

call migrations.mark_migration_applied('8')
call migrations.mark_migration_applied('8');

commit;

0 comments on commit d880c30

Please sign in to comment.