view postgres/setupExtensions.sh @ 82:b2deadc0cf17

USPSR-2298 Update usps db image to ssdt-postgres:3
author Matt Calmes <calmes@nwoca.org>
date Thu, 25 Aug 2016 16:19:15 +0100
parents 53671513b240
children
line wrap: on
line source
#!/bin/bash

export PGUSER=postgres
result=`psql -t -A <<- EOSQL
   SELECT 1 FROM pg_database WHERE datname='$DB_NAME';
EOSQL`

echo "Checking extensions on $DB_NAME ( $result )"
if [[ $result == "1" ]]; then
    psql $DB_NAME <<- EOSQL
    CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
EOSQL
  echo "Set extensions on $DB_NAME"
fi