campingmontagut/revert/user_profile.sql
jordi fita mas 5d0861824a Add authentication relations, views, and functions for PostgreSQL
Most of them are exactly the same as we use for Numerus, but with the
main application schema changed to camper.

Closes #1
2023-07-22 01:59:12 +02:00

10 lines
218 B
PL/PgSQL

-- Revert camper:user_profile from pg
begin;
drop trigger if exists update_user_profile on camper.user_profile;
drop function if exists camper.update_user_profile();
drop view if exists camper.user_profile;
commit;