authserver/homestead/scripts/create-postgres.sh
author durandn
Mon, 12 Oct 2015 11:46:23 +0200
changeset 174 69fb08fbc4b1
parent 8 5a0cbbe0922a
permissions -rw-r--r--
Corrected max-height config missing from AnnotationsList in views using the widget

#!/usr/bin/env bash

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