diff --git a/src/db/migration/V20170911_1230__mantis9792.sql b/src/db/migration/V20170911_1230__mantis9792.sql new file mode 100644 index 000000000..7ec98e0eb --- /dev/null +++ b/src/db/migration/V20170911_1230__mantis9792.sql @@ -0,0 +1,9 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ESTACION add INDSTOCKCENTRAL NUMBER(1)'; + execute immediate 'ALTER TABLE ESTACION_IMPRESORA add ESTACIONCENTRAL_ID NUMBER(7)'; + execute immediate 'ALTER TABLE FOLIO_PREIMPRESO add CONFIRMANDO NUMBER(7)'; + exception when object_exists then null; +end; \ No newline at end of file