awips2/deltaScripts/13.1.2/eventsSchemaDelta.sh
Bryan Kowal d1aeee2503 Issue #1292 - delta scripts
Change-Id: Iec5eb9746e0531349b6bdbe70577125a7a6254d5

Former-commit-id: cd67a692d1 [formerly 3bfb3b93b3] [formerly 623812116b] [formerly 11c98b66a2 [formerly 623812116b [formerly 0f1643912c5713f556a931725a6ad4b75620a4df]]]
Former-commit-id: 11c98b66a2
Former-commit-id: 72cb53368a006fdb6a817ac772d65aca6fddab9c [formerly 2bcc0bbd60]
Former-commit-id: cb142a0650
2012-11-27 14:05:24 -06:00

23 lines
542 B
Bash

#!/bin/bash
SQL_SCRIPT="createEventsSchema.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 - adding the events schema to the metadata database"
# 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