diff --git a/src/db/migration/V20170814_1600__mantis9361.sql b/src/db/migration/V20170814_1600__mantis9361.sql new file mode 100644 index 000000000..8b54faebd --- /dev/null +++ b/src/db/migration/V20170814_1600__mantis9361.sql @@ -0,0 +1,10 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -02260); +begin + execute immediate 'ALTER TABLE CONTA_CORRENTE_PTOVTA ADD ( + IMPORTETOTALDEBITO NUMBER(12,2), + IMPORTETOTALCREDITO NUMBER(12,2) + )'; + exception when object_exists then null; +end; \ No newline at end of file