- instale el servidor y cliente postgres 9.3 en su mac
- ejecutar
locate initdbesperado en/Library/PostgreSQL/9.3/bin/initdbsupongamos que está allí - crear instancia 9.3
/Library/PostgreSQL/9.3/bin/initdb -D /new_data_directory - exportar 9.4 db
/Library/PostgreSQL/9.3/bin/pg_dump -U 94_username -d 94_database >somefile.dmp - apagar el antiguo
/Library/PostgreSQL/9.4/bin/pg_ctl stop -m fast - iniciar nuevo
/Library/PostgreSQL/9.3/bin/pg_ctl start7.crear 93 db/Library/PostgreSQL/9.3/bin/psql -U 93_superuser_user -c "create database IMPORT_DB" - importar 93 db
/Library/PostgreSQL/9.3/bin/psql -U 93_superuser_user -f somefile.dmp IMPORT_DB
No sé si hay artículos sobre este tema. Sé que sueno anticuado, pero ¿tal vez manuales? :) y experiencia