Change-Id: If0799726ff9fa3d90026d0115cc03bd55347ce90 Former-commit-id: 3e916aad7d281ba53cd1634a15d7ac521943bc75
7 lines
296 B
Bash
7 lines
296 B
Bash
#!/bin/bash
|
|
# DR #1992 - this update script will drop the refHour and validTime columns
|
|
# from the bufrua column, refTime has the exact same value.
|
|
|
|
PSQL="/awips2/psql/bin/psql"
|
|
|
|
${PSQL} -U awips -d metadata -c "ALTER TABLE bufrua DROP COLUMN IF EXISTS validtime, DROP COLUMN IF EXISTS refhour;"
|