mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-19 05:07:54 +00:00
7 lines
150 B
Bash
7 lines
150 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname="chirpstack_integration" <<-EOSQL
|
||
|
create extension hstore;
|
||
|
EOSQL
|