Skip to content

Commit 6e3bb96

Browse files
committed
chore: fix signature in rever
1 parent 1f7f6aa commit 6e3bb96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

schema/revert/mutations/commit_form_change_internal.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
-- Deploy cif:mutations/commit_form_change to pg
22
begin;
33

4+
-- drop function if exists cif_private.commit_form_change_internal(cif.form_change, int);
45
create or replace function cif_private.commit_form_change_internal(fc cif.form_change)
56
returns cif.form_change as $$
67
declare
@@ -30,7 +31,7 @@ begin
3031
end;
3132
$$ language plpgsql volatile;
3233

33-
grant execute on function cif_private.commit_form_change_internal(fc cif.form_change) to cif_internal, cif_external, cif_admin;
34+
grant execute on function cif_private.commit_form_change_internal(cif.form_change) to cif_internal, cif_external, cif_admin;
3435

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

0 commit comments

Comments
 (0)