blob: 90c17f18c443c06eb5adba4fea3a0a06a787503f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $PostgreSQL$ */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;
DROP OPERATOR <>(chkpass, text);
DROP OPERATOR =(chkpass, text);
DROP FUNCTION ne(chkpass, text);
DROP FUNCTION eq(chkpass, text);
DROP FUNCTION raw(chkpass);
DROP TYPE chkpass CASCADE;
|