© 2026 Hedgehog Software, LLC
pg_dump \ -h db.thedatabase.supabase.co \ -U postgres --schema-only \ --clean --if-exists --schema=public \ > supabase_schema.sql
psql --dbname "$MAINDB" --single-transaction --variable ON_ERROR_STOP=1 --file supabase_schema.sql
id uuid DEFAULT extensions.uuid_generate_v4() NOT NULL,