jam-cloud/resetdb.sh

11 lines
237 B
Bash
Raw Permalink Normal View History

#!/bin/sh -x
2014-05-27 14:31:50 +00:00
dropdb --if-exists jam
dropdb --if-exists jam_db_build
dropdb --if-exists jam_ruby_test
dropdb --if-exists jam_web_test
dropdb --if-exists jam_websockets_test
createdb -Upostgres jam || sudo su postgres -c "createdb jam"
2017-05-26 19:47:37 +00:00