#!/bin/bash
# designed to be executed by PostgreSQL super user
# create user and database of the GNP Proration System proration database.
# PostgreSQL server postmaster must be running
createuser --no-createdb --no-adduser gnp
createdb --owner gnp gnp "gnp proration system proration database"
