authserver/homestead/scripts/create-postgres.sh
author durandn
Wed, 22 Jul 2015 17:04:07 +0200
changeset 59 579eda85b45e
parent 8 5a0cbbe0922a
permissions -rw-r--r--
disabling copy api test fields in iframetester at it is still subject to changes

#!/usr/bin/env bash

DB=$1;
su postgres -c "dropdb $DB --if-exists"
su postgres -c "createdb -O homestead '$DB' || true"