Skip to content

Instantly share code, notes, and snippets.

View Luiz-Monad's full-sized avatar
💭
computing

Luiz Luiz-Monad

💭
computing
View GitHub Profile
-- Function: clone_schema(text, text, text)
-- DROP FUNCTION clone_schema(text, text, text);
CREATE OR REPLACE FUNCTION clone_schema(source_schema text, dest_schema text, dest_owner text)
RETURNS void AS
$BODY$
DECLARE
seq RECORD;