- instale o servidor e cliente postgres 9.3 no seu mac
- execute
locate initdb
esperado em/Library/PostgreSQL/9.3/bin/initdb
vamos supor que esteja lá - criar instância 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
- encerrar o antigo
/Library/PostgreSQL/9.4/bin/pg_ctl stop -m fast
- iniciar novo
/Library/PostgreSQL/9.3/bin/pg_ctl start
7.criar 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
Não sei se há artigos sobre este tema. Eu sei que pareço antiquado, mas talvez manuais? :) e experiência