diff --git a/deployment/hasura/migrations/Aerie/8_procedural_scheduling/down.sql b/deployment/hasura/migrations/Aerie/8_procedural_scheduling/down.sql index 9881ed436c..1760c648a1 100644 --- a/deployment/hasura/migrations/Aerie/8_procedural_scheduling/down.sql +++ b/deployment/hasura/migrations/Aerie/8_procedural_scheduling/down.sql @@ -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; diff --git a/deployment/hasura/migrations/Aerie/8_procedural_scheduling/up.sql b/deployment/hasura/migrations/Aerie/8_procedural_scheduling/up.sql index 6d015c877e..cacfa564af 100644 --- a/deployment/hasura/migrations/Aerie/8_procedural_scheduling/up.sql +++ b/deployment/hasura/migrations/Aerie/8_procedural_scheduling/up.sql @@ -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;