diff --git a/src/db/migration/V20170610_1200__mantis8996.sql b/src/db/migration/V20170610_1200__mantis8996.sql new file mode 100644 index 000000000..362d41d7a --- /dev/null +++ b/src/db/migration/V20170610_1200__mantis8996.sql @@ -0,0 +1,25 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE CAJA ADD (FECVENTADIGITA DATE)'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE BOLETO ADD (FECVENTADIGITA DATE)'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE DIGITA_ITEM ADD (FECVENTADIGITA DATE)'; + exception when object_exists then null; +end; \ No newline at end of file