1 #!/usr/bin/env bash
2
3 DB=$1;
4 su postgres -c "dropdb $DB --if-exists"
5 su postgres -c "createdb -O homestead '$DB' || true"