9 lines
171 B
MySQL
9 lines
171 B
MySQL
|
-- 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;
|