awips2/deltaScripts/16.1.1/DR4537/update_parm_units.sh
2022-05-05 12:34:50 -05:00

11 lines
No EOL
257 B
Bash
Executable file

#!/bin/bash
# DR #4537 - correct units in the parameter table.
PSQL="/awips2/psql/bin/psql"
echo "INFO: update parameter unit's column"
${PSQL} -U awips -d metadata -c "UPDATE awips.parameter SET unit='kg/m^2' WHERE abbreviation='VILIQ' ;"
echo "Done."