authserver/homestead/scripts/create-postgres.sh
author julien <julien@erret.com>
Fri, 31 Jul 2015 18:33:02 +0200
changeset 67 6e041b15bc78
parent 8 5a0cbbe0922a
permissions -rw-r--r--
Move the header title of the annotationList box and LatestAnnotation Box, inside the widget

#!/usr/bin/env bash

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