Skip to content

Commit

Permalink
chore: fix signature in rever
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevespi committed Nov 21, 2023
1 parent 1f7f6aa commit 6e3bb96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion schema/revert/mutations/commit_form_change_internal.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-- Deploy cif:mutations/commit_form_change to pg
begin;

-- drop function if exists cif_private.commit_form_change_internal(cif.form_change, int);
create or replace function cif_private.commit_form_change_internal(fc cif.form_change)
returns cif.form_change as $$
declare
Expand Down Expand Up @@ -30,7 +31,7 @@ begin
end;
$$ language plpgsql volatile;

grant execute on function cif_private.commit_form_change_internal(fc cif.form_change) to cif_internal, cif_external, cif_admin;
grant execute on function cif_private.commit_form_change_internal(cif.form_change) to cif_internal, cif_external, cif_admin;

comment on function cif_private.commit_form_change_internal(cif.form_change) is 'Commits the form change and calls the corresponding commit handler.';

Expand Down

0 comments on commit 6e3bb96

Please sign in to comment.