Files
SQL-Helper/helper/10-revoke-all.sql
Alvar C.H. Freude be946b9834 Update comment
2024-03-30 00:47:33 +01:00

10 lines
217 B
SQL

--
-- Revoke all from Table, set Owner to :owner variable
--
ALTER TABLE :schema.:table OWNER TO :owner;
REVOKE ALL ON :schema.:table FROM PUBLIC;
REVOKE ALL ON :schema.:table FROM current_user;