diff --git a/src/db/migration/V20201002_1731__mantis20609.sql b/src/db/migration/V20201002_1731__mantis20609.sql new file mode 100644 index 000000000..64a84ebf1 --- /dev/null +++ b/src/db/migration/V20201002_1731__mantis20609.sql @@ -0,0 +1,15 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE BPE_CTRL_DISPONIBILIDADE MODIFY BPE_REJEITADO_ID NUMBER(12)'; + exception when column_exists then null; +end; +/ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CAJA_DIVERSOS MODIFY BPE_ID NUMBER(12)'; + exception when column_exists then null; +end; \ No newline at end of file