awips2/deltaScripts/14.2.1/mdlsndTimeColumns.sh
Ben Steffensmeier d79f804d4e Issue #2537 Split modelsounding into common/edex plugins.
Change-Id: I34aa58bc13736109bd71f0b0085df6548c4623a8

Former-commit-id: e80e4aa972c394d699feba553d8d13e4f9dd3a03
2014-01-06 16:02:59 -06:00

7 lines
332 B
Bash

#!/bin/bash
# DR #2537 - this update script will drop the fcstseconds and timeobs columns
# from the modelsounding table, refTime and forecasttime have the exact same values.
PSQL="/awips2/psql/bin/psql"
${PSQL} -U awips -d metadata -c "ALTER TABLE modelsounding DROP COLUMN IF EXISTS fcstseconds, DROP COLUMN IF EXISTS timeobs;"