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