Update wiki.md

This commit is contained in:
Sebastian Lenzlinger 2024-01-08 14:28:42 +00:00
parent eda751f4e1
commit d2b311c731

View File

@ -33,4 +33,11 @@ Then manually copy
```postgresql
\copy FootBikeCount FROM 'FootBikeCount.csv' WITH CSV HEADER
\copy mivcount FROM 'MivCount.csv' WITH CSV HEADER
```
```
# How to create a db dump from the command line
```bash
pg_dump -U sebl -p 5433 -d proj_db > [dump_file].sql
```