9 lines
165 B
MySQL
9 lines
165 B
MySQL
|
-- Revert camper:encrypt_password from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
drop trigger if exists encrypt_password on auth."user";
|
||
|
drop function if exists auth.encrypt_password();
|
||
|
|
||
|
commit;
|