chirpstack/.docker-compose/postgresql/initdb/0002-chirpstack_extensions.sh

8 lines
168 B
Bash
Raw Permalink 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" <<-EOSQL
create extension pg_trgm;
create extension hstore;
EOSQL