diff --git a/src/db/migration/V20170601_1404__mantis9090.sql b/src/db/migration/V20170601_1404__mantis9090.sql new file mode 100644 index 000000000..9c9396c5b --- /dev/null +++ b/src/db/migration/V20170601_1404__mantis9090.sql @@ -0,0 +1,9 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE CATEGORIA_BLOQ_IMPPOSTERIOR ADD (ACTIVO NUMBER(1) DEFAULT 0 NOT NULL)'; + execute immediate 'ALTER TABLE CATEGORIA_BLOQ_IMPPOSTERIOR ADD (FECMODIF DATE)'; + execute immediate 'ALTER TABLE CATEGORIA_BLOQ_IMPPOSTERIOR ADD (USUARIO_ID NUMBER(7))'; + exception when object_exists then null; +end; \ No newline at end of file