Activation de l’extension hstore

This commit is contained in:
Benjamin Bohard 2019-12-09 16:22:13 +01:00
parent dcaf7da3bc
commit 84850182f6
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +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;"
```