awips2/deltaScripts/13.5.1/changeDataTypeEnumToUppercase.sh
Dustin Johnson be06196084 Issue #2038 Fixes for 13.5.1 delta scripts
Former-commit-id: 4f112968dd [formerly 0ac8d01147] [formerly 660ca8fcec] [formerly 4f112968dd [formerly 0ac8d01147] [formerly 660ca8fcec] [formerly bac07c65a1 [formerly 660ca8fcec [formerly 41ead90acf0d06e959e513e5a25869eb6e18150a]]]]
Former-commit-id: bac07c65a1
Former-commit-id: a1b0b399a9 [formerly 7c11dea797] [formerly bede60a174f734fd8be3cff1da228268a9551c43 [formerly ec3e8b6411]]
Former-commit-id: 116850bed663cea0cef9ee792538f13f2a182c5b [formerly 7c145f4fe9]
Former-commit-id: dc5522e6ab
2013-06-11 13:13:48 -05:00

23 lines
542 B
Bash

#!/bin/bash
SQL_SCRIPT="changeDataTypeEnumToUppercase.sql"
# ensure that the sql script is present
if [ ! -f ${SQL_SCRIPT} ]; then
echo "ERROR: the required sql script - ${SQL_SCRIPT} was not found."
echo "FATAL: the update has failed!"
exit 1
fi
echo "INFO: update started - changing DataType to an Uppercase enum"
# run the update
/awips2/psql/bin/psql -U awips -d metadata -f ${SQL_SCRIPT}
if [ $? -ne 0 ]; then
echo "FATAL: the update has failed!"
exit 1
fi
echo "INFO: the update has completed successfully!"
exit 0