Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PostgreSQL データベースのスキーマを顧客に送信する必要があります。 どうやってやるの? db ディレクトリに見つかりません。
pg_dumpユーティリティを使用してスキーマをエクスポートし、別のマシンにロードすることをお勧めします。
pg_dump -U postgres --schema-only db_name > file.txt
そして、 psqlユーティリティを使用して、別のマシン/インスタンスにロードし直すことができます。
psql -U postgres db_name < file.txt