authserver/homestead/scripts/create-postgres.sh
author durandn
Fri, 13 Nov 2015 14:58:35 +0100
changeset 181 f2d46072794a
parent 8 5a0cbbe0922a
permissions -rw-r--r--
Fixed preview marker scenario iframe so it uses new layout

#!/usr/bin/env bash

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