diff --git a/src/db/migration/V20191029_1132__mantis16732.sql b/src/db/migration/V20191029_1132__mantis16732.sql new file mode 100644 index 000000000..9834b1026 --- /dev/null +++ b/src/db/migration/V20191029_1132__mantis16732.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CTRL_SERIE_BPE ADD (INSCRICAOESTADUAL_ID NUMBER(7))'; + exception when column_exists then null; +end; \ No newline at end of file diff --git a/src/db/migration/V20191029_1133__mantis16732.sql b/src/db/migration/V20191029_1133__mantis16732.sql new file mode 100644 index 000000000..dafdbaa47 --- /dev/null +++ b/src/db/migration/V20191029_1133__mantis16732.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE BPE_CTRL_DISPONIBILIDADE ADD (INSCRICAOESTADUAL_ID NUMBER(7))'; + exception when column_exists then null; +end; \ No newline at end of file