diff --git a/src/db/migration/V20170619_1834__importeContaCorrente.sql b/src/db/migration/V20170619_1834__importeContaCorrente.sql new file mode 100644 index 000000000..7fd65c94f --- /dev/null +++ b/src/db/migration/V20170619_1834__importeContaCorrente.sql @@ -0,0 +1,17 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'alter table CONTA_CORRENTE_PTOVTA MODIFY ( IMPORTE number(12,2), +IMPORTETARIFA number(12,2), +IMPORTEPEDAGIO number(12,2), +IMPORTETAXAEMBARQUE number(12,2), +IMPORTESEGURO number(12,2), +IMPORTEINGRESO number(12,2), +IMPORTEEGRESO number(12,2), +IMPORTEDEVOLUCION number(12,2), +IMPORTETROCA number(12,2), +IMPORTECAJA number(12,2), +IMPORTETOTALEFECTIVO number(12,2))'; + exception when column_exists then null; +end; \ No newline at end of file