#!/bin/sh

for host in ctd1 ctd2 ctd3 ctd4 ; do

	createdb -h $host oscon
	psql -h $host oscon <<_EOF_
		CREATE TABLE customer (
			c_id	integer primary key,
			c_name	text,
			c_phone	text
		);
_EOF_

done

