Exporter le schéma PostgreSQL

Exporte le schéma PostgreSQL épuré (sans commentaires, droits ni métadonnées) dans un fichier et copie le chemin au presse-papiers.

Spar Skills Guide Bot
DevOpsIntermédiaire1 vues0 installations08/03/2026
Claude CodeCursorWindsurf
postgresqldatabase-exportbash-scriptingschema-managementdev-tools

name: dump-schema description: Dump clean Postgres schema to a file and copy path to clipboard. allowed-tools: Bash

Dump Schema

Dump a clean PostgreSQL schema (no comments, no ownership, no privileges) from the local dev database.

Parameters

Ask the user (if not provided):

  • output_file – absolute path for the .sql file (default: prompt user)

Use this database URL unless the user specifies otherwise:

postgres://user:password@localhost:5432/macrodb

Steps

  1. Run pg_dump with schema-only flags, pipe through cleanup, write to file:
pg_dump --schema-only --no-owner --no-privileges --no-comments --no-publications --no-subscriptions --no-security-labels --no-tablespaces "$DB_URL" | sed '/^--/d' | sed '/^SET /d' | sed '/^SELECT pg_catalog/d' | sed '/^$/N;/^\n$/d' > "$OUTPUT_FILE"
  1. Copy the output path to the clipboard:
echo -n "$OUTPUT_FILE" | pbcopy
  1. Report: Schema dumped to <path> (path copied to clipboard)

Skills similaires