awips2/deltaScripts/13.6.1/CreateNewGfeTables.sh
Ron Anderson 04d2fdc214 Issue #1571 Refactored GFE to store GridParmInfo and ParmStorageInfo in PostGres
Change-Id: Iae7cf49fc18abf03ef3b0ee498fb8e658f37d1cf

Former-commit-id: 3094dc247a6de94ff00321d093b431e3f401b0c5
2013-08-20 17:16:21 -05:00

11 lines
234 B
Bash

#!/bin/bash
# run the update
/awips2/psql/bin/psql -U awips -d metadata -f CreateNewGfeTables.sql
if [ $? -ne 0 ]; then
echo "FATAL: the update has failed!"
exit 1
fi
echo "INFO: the update has completed successfully!"
exit 0