camper/revert/encrypt_password.sql

9 lines
165 B
MySQL
Raw Permalink Normal View History

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