Restaura una base de datos PostgreSQL de un archivo creado con pg_dump. Más información: https://www.postgresql.org/docs/current/app-pgrestore.html.
pg_restore -d {{nombre_base_de_datos}} {{archivo_de_datos.dump}}
pg_restore -U {{usuario}} -d {{nombre_base_de_datos}} {{archivo_de_datos.dump}}
pg_restore -h {{equipo}} -p {{puerto}} -d {{nombre_base_de_datos}} {{archivo_de_datos.dump}}
pg_restore --list {{archivo_de_datos.dump}}
pg_restore --clean -d {{nombre_base_de_datos}} {{archivo_de_datos.dump}}
pg_restore -j {{2}} -d {{nombre_base_de_datos}} {{archivo_de_datos.dump}}