chirpstack-docker/configuration/postgresql/initdb/004-loraserver_as_hstore.sh

7 lines
141 B
Bash

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