chirpstack/.docker-compose/postgresql/initdb/0004-chirpstack_initegration_extensions.sh

7 lines
150 B
Bash
Raw Normal View History

2022-04-06 20:18:32 +00:00
#!/bin/bash
set -e
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname="chirpstack_integration" <<-EOSQL
create extension hstore;
EOSQL