camper/revert/ensure_role_exists.sql

9 lines
171 B
MySQL
Raw Normal View History

-- Revert camper: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;