camper/revert/encrypt_password.sql

9 lines
165 B
PL/PgSQL

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