pyceo/sql/initialize.sh

14 lines
242 B
Bash
Raw Normal View History

2007-01-27 18:41:51 -05:00
#!/bin/sh
# Initializes a database for CEO.
# initialize the database
createdb $1
createlang plpythonu $1
# initialize the tables
psql $1 < structure.sql
# initialize check triggers
psql $1 < verify_studentid.sql
psql $1 < verify_term.sql