Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunlol authored Nov 29, 2024
1 parent 7aab0ce commit f468df6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ You can sync only specific tables from your Postgres database. To include specif

```sh
./bemidb \
--include-tables public.users,public.transactions \
--pg-include-tables public.users,public.transactions \
--pg-database-url postgres://postgres:postgres@localhost:5432/dbname \
sync
```
Expand All @@ -148,12 +148,12 @@ To exclude specific tables during the sync:

```sh
./bemidb \
--exclude-tables public.cache,public.logs \
--pg-exclude-tables public.cache,public.logs \
--pg-database-url postgres://postgres:postgres@localhost:5432/dbname \
sync
```

Note: You cannot use `--include-tables` and `--exclude-tables` simultaneously.
Note: You cannot use `--pg-include-tables` and `--pg-exclude-tables` simultaneously.

### Syncing from multiple Postgres databases

Expand Down

0 comments on commit f468df6

Please sign in to comment.