createdb 117 Bytes
#!/bin/bash

DB="gargandbV5"

psql -c "drop database IF EXISTS \"${DB}\""
createdb "${DB}"
psql "${DB}" < schema.sql