Skip to content

Instantly share code, notes, and snippets.

@eleezs
eleezs / migration.sql
Created June 3, 2024 11:07 — forked from bolubee101/migration.sql
PostgreSQL Schema and Data Migration Script Using the dblink extension
DO $$
DECLARE
tbl RECORD;
col RECORD;
seq RECORD;
udt RECORD;
schema RECORD;
sql TEXT;
default_expr TEXT;
column_definitions TEXT;