Add old includes

This commit is contained in:
Alvar C.H. Freude
2024-03-30 00:45:40 +01:00
parent a7d23a21ed
commit 8d5d979cba
13 changed files with 208 additions and 0 deletions

9
helper/10-revoke-all.sql Normal file
View File

@ -0,0 +1,9 @@
--
-- Revoke all from Table, set Owner
--
ALTER TABLE :schema.:table OWNER TO :owner;
REVOKE ALL ON :schema.:table FROM PUBLIC;
REVOKE ALL ON :schema.:table FROM current_user;