Skip to content

Commit 764b52e

Browse files
davidemarcolidreulavelle
authored andcommitted
fix: deleting database and not table
1 parent 9470bc9 commit 764b52e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/services/extras.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To reset the Postgres database by dropping and recreating the `riven` table, you
1818
Make sure you have the postgres container running, and you should `docker stop riven` before running the following commands.
1919

2020
```bash
21-
docker exec -it postgres psql -U postgres -c "DROP TABLE IF EXISTS riven;"
21+
docker exec -it postgres psql -U postgres -c "DROP DATABASE IF EXISTS riven;"
2222
docker exec -it postgres psql -U postgres -c "CREATE DATABASE riven;"
2323
```
2424

0 commit comments

Comments
 (0)