camper/revert/contact.sql

9 lines
144 B
PL/PgSQL

-- Revert camper:contact from pg
begin;
drop policy if exists company_policy on camper.contact;
drop table if exists camper.contact;
commit;