handles stored procedures/bundles in localization Former-commit-id: 8e3e3be372d5db6dfc5897407074bc250fbef294
9 lines
231 B
Bash
Executable file
9 lines
231 B
Bash
Executable file
#!/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}"
|