diff --git a/src/db/migration/V20170426_1054__mantis8735.sql b/src/db/migration/V20170426_1054__mantis8735.sql new file mode 100644 index 000000000..d37a86ff2 --- /dev/null +++ b/src/db/migration/V20170426_1054__mantis8735.sql @@ -0,0 +1,8 @@ + +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE EMPRESA ADD (INDIMPRIMEGRATUIDADE NUMBER(1,0))'; + exception when column_exists then null; +end;