numerus/revert/ensure_role_exists.sql

9 lines
172 B
PL/PgSQL

-- Revert numerus:ensure_role_exists from pg
begin;
drop trigger if exists ensure_role_exists on auth."user";
drop function if exists auth.ensure_role_exists();
commit;