diff --git a/src/db/migration/V20170705_1828__mantis9309.sql b/src/db/migration/V20170705_1828__mantis9309.sql new file mode 100644 index 000000000..89308a90e --- /dev/null +++ b/src/db/migration/V20170705_1828__mantis9309.sql @@ -0,0 +1,10 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE PTOVTA_COMISSAO + DROP ( + INDBILHETESTROCADOS, INDBILHETESTRANSFERIDOS + )'; + exception when column_exists then null; +end; \ No newline at end of file