awips2/deltaScripts/14.3.1/DR2667/renameLightningSourceInDB.sh

10 lines
231 B
Bash
Raw Normal View History

2022-05-05 12:34:50 -05:00
#!/bin/bash
# DR #2667 Add binlightning support to Data Access Framework
PSQL="/awips2/psql/bin/psql"
SQL_COMMAND="
ALTER TABLE binlightning RENAME COLUMN lightsource TO source;
"
${PSQL} -U awips -d metadata -c "${SQL_COMMAND}"