> how do i get a dump of a postgresql database without the data?
% pg_dump --helppg_dump dumps a database as a text file or to other formats.
Usage: pg_dump [OPTION]... [DBNAME]
.....
-s, --schema-only dump only the schema, no data
....
-philip