diff --git a/src/db/migration/V20180910_1700__mantis11158.sql b/src/db/migration/V20180910_1700__mantis11158.sql new file mode 100644 index 000000000..9b6e5ebaa --- /dev/null +++ b/src/db/migration/V20180910_1700__mantis11158.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE PTOVTA_CAT_IND ADD EMPRESA_ID NUMBER(7) DEFAULT -1 '; + exception when object_exists then null; +end; \ No newline at end of file