#! /bin/sh

if !(test $2) then
  echo Usage: $0 database pguser
  exit 1
fi
psql -f schema.sql $1 -U $2

