Enable hstore extension.

This commit is contained in:
Orne Brocaar 2019-06-04 13:55:12 +02:00
parent 6f57650992
commit 657875b740

View File

@ -0,0 +1,6 @@
#!/bin/bash
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname="loraserver_as" <<-EOSQL
create extension hstore;
EOSQL