authserver/homestead/scripts/create-postgres.sh
author durandn
Mon, 20 Jul 2015 11:38:11 +0200
changeset 40 b8a024a10c4c
parent 8 5a0cbbe0922a
permissions -rw-r--r--
Removed current_user from parameters for the iframe

#!/usr/bin/env bash

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