Skip to content

Commit

Permalink
fix: deleting database and not table
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemarcoli authored and dreulavelle committed Oct 13, 2024
1 parent 9470bc9 commit 764b52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/services/extras.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To reset the Postgres database by dropping and recreating the `riven` table, you
Make sure you have the postgres container running, and you should `docker stop riven` before running the following commands.

```bash
docker exec -it postgres psql -U postgres -c "DROP TABLE IF EXISTS riven;"
docker exec -it postgres psql -U postgres -c "DROP DATABASE IF EXISTS riven;"
docker exec -it postgres psql -U postgres -c "CREATE DATABASE riven;"
```

Expand Down

0 comments on commit 764b52e

Please sign in to comment.