#!bin/sh
#
#script to update the database MDweb 1.5 for MDweb version 1.6 on linux
#
echo -n "Enter the name of MDweb database 1.5 to update : "
read database
echo -n "Enter the owner of the database (postgres user account with rights of DB creation) : "
read owner
psql -d $database < update15216.sql
