added update script to drop recco from db Former-commit-id:3204a2f7b5
[formerly3551b731e0
] [formerly95f1621d3e
] [formerly3204a2f7b5
[formerly3551b731e0
] [formerly95f1621d3e
] [formerly8cbe2c06a8
[formerly95f1621d3e
[formerly f4e66b8afce682014a0fa1ef9585b7ee6480e1e1]]]] Former-commit-id:8cbe2c06a8
Former-commit-id:b5b94646cf
[formerlyd2f0b73626
] [formerly 3b2b0c50ce7169049fcf9a2ade66e9157fc2cf81 [formerly49c8bd5ee9
]] Former-commit-id: 7384c5efc3b7d3bed603cfe7ab8ff291ceab0e23 [formerlyd94f44d406
] Former-commit-id:09101ca5ac
11 lines
262 B
Bash
11 lines
262 B
Bash
#!/bin/bash
|
|
# DR #2505 Disable deployment of recco plugin
|
|
|
|
PSQL="/awips2/psql/bin/psql"
|
|
|
|
SQL_COMMAND="
|
|
delete from plugin_info where name = 'recco';
|
|
drop table if exists recco;
|
|
drop sequence if exists reccoseq;
|
|
"
|
|
${PSQL} -U awips -d metadata -c "${SQL_COMMAND}"
|