diff --git a/src/db/migration/V20161209_1343__mantis8396.sql b/src/db/migration/V20161209_1343__mantis8396.sql new file mode 100644 index 000000000..e88c24ed3 --- /dev/null +++ b/src/db/migration/V20161209_1343__mantis8396.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE FORMA_PAGO ADD (TIPO_PAGO NUMBER(2,0))'; + exception when object_exists then null; +end; \ No newline at end of file diff --git a/src/db/migration/V20161213_1012__mantis8389.sql b/src/db/migration/V20161213_1012__mantis8389.sql new file mode 100644 index 000000000..59185085b --- /dev/null +++ b/src/db/migration/V20161213_1012__mantis8389.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE PACOTE_TARIFA ADD (INDVENDAWEB NUMBER(1,0) DEFAULT 1)'; + exception when object_exists then null; +end; \ No newline at end of file