davical/dba/create-database.sh
2006-09-11 23:10:26 +12:00

13 lines
161 B
Bash
Executable File

#!/bin/sh
#
# Build the RSCDS database
#
DBNAME="${1:-rscds}"
createdb -E UTF8 "${DBNAME}"
psql -f rscds.sql "${DBNAME}"
psql -f sample-data.sql "${DBNAME}"