To create a copy of a database, first make sure the destination doesn't exist:
psql -c "DROP DATABASE firehose_development;"
Then:
psql -c "CREATE DATABASE firehose_development WITH TEMPLATE firehose_test;"
To create a copy of a database, first make sure the destination doesn't exist:
psql -c "DROP DATABASE firehose_development;"
Then:
psql -c "CREATE DATABASE firehose_development WITH TEMPLATE firehose_test;"