27 lines
664 B
MySQL
27 lines
664 B
MySQL
|
-- Deploy numerus:edit_payment_account_cash to pg
|
||
|
-- requires: roles
|
||
|
-- requires: schema_numerus
|
||
|
-- requires: payment_account
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to numerus, public;
|
||
|
|
||
|
create or replace function edit_payment_account_cash(account_slug uuid, new_name text) returns uuid as
|
||
|
$$
|
||
|
update payment_account
|
||
|
set name = new_name
|
||
|
where slug = account_slug
|
||
|
and payment_account_type = 'cash'
|
||
|
returning slug
|
||
|
;
|
||
|
$$
|
||
|
language sql
|
||
|
;
|
||
|
|
||
|
revoke execute on function edit_payment_account_cash(uuid, text) from public;
|
||
|
grant execute on function edit_payment_account_cash(uuid, text) to invoicer;
|
||
|
grant execute on function edit_payment_account_cash(uuid, text) to admin;
|
||
|
|
||
|
commit;
|