L’extension doit être créée pour la base de données risotto

This commit is contained in:
Benjamin Bohard 2019-12-09 16:28:47 +01:00
parent 84850182f6
commit 7dc6ce7845
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ podman run -dt -p 5432:5432 postgres:11-alpine
psql -U postgres -h localhost -c "CREATE ROLE risotto WITH LOGIN PASSWORD 'risotto';"
psql -U postgres -h localhost -c "CREATE DATABASE risotto;"
psql -U postgres -h localhost -c "GRANT ALL ON DATABASE risotto TO risotto;"
psql -U postgres -h localhost -c "CREATE EXTENSION hstore;"
psql -U postgres -h localhost -c "CREATE EXTENSION hstore;" risotto
```