change param in readme command

This commit is contained in:
Pablo Martin 2024-02-15 16:29:03 +01:00
parent 87bea1f45d
commit 5f890a1fb1

View file

@ -38,7 +38,7 @@ The only missing bit to make your local deployment be like the production DWH is
For example, if you are working on models that use data from Core, you can dump and restore from your terminal with something roughly like this: For example, if you are working on models that use data from Core, you can dump and restore from your terminal with something roughly like this:
```bash ```bash
pg_dump -h superhog-dwh-prd.postgres.database.azure.com -U airbyte_user -W -F t dwh -n sync_core > core.dump pg_dump -h superhog-dwh-prd.postgres.database.azure.com -U airbyte_user -W -F plain dwh -n sync_core > core.dump
pg_restore -h localhost -U postgres -W -d dwh core.dump pg_restore -h localhost -U postgres -W -d dwh core.dump
``` ```