diff --git a/src/db/migration/V20190923_1105__mantis14990.sql b/src/db/migration/V20190923_1105__mantis14990.sql deleted file mode 100644 index d3cf89e7f..000000000 --- a/src/db/migration/V20190923_1105__mantis14990.sql +++ /dev/null @@ -1,10 +0,0 @@ -declare - column_exists exception; - pragma exception_init (column_exists , -01430); -begin - execute immediate 'ALTER TABLE GP_PRICING ADD (INDESTADIAMINIMA NUMBER(1), CANTDIAS_ESTADIAMINIMA NUMBER(3), - INDLUN_ESTADIAMINIMA NUMBER(1), INDMAR_ESTADIAMINIMA NUMBER(1), INDMIE_ESTADIAMINIMA NUMBER(1), - INDJUE_ESTADIAMINIMA NUMBER(1), INDVIE_ESTADIAMINIMA NUMBER(1), INDSAB_ESTADIAMINIMA NUMBER(1), - INDDOM_ESTADIAMINIMA NUMBER(1))'; - exception when column_exists then null; -end; \ No newline at end of file diff --git a/src/db/postgresql/migration/V20190923_1105__mantis14990.sql b/src/db/postgresql/migration/V20190923_1105__mantis14990.sql deleted file mode 100644 index 2a56545d5..000000000 --- a/src/db/postgresql/migration/V20190923_1105__mantis14990.sql +++ /dev/null @@ -1,9 +0,0 @@ -DO $$ -BEGIN - ALTER TABLE GP_PRICING ADD (INDESTADIAMINIMA NUMBER(1), CANTDIAS_ESTADIAMINIMA NUMBER(3), - INDLUN_ESTADIAMINIMA NUMBER(1), INDMAR_ESTADIAMINIMA NUMBER(1), INDMIE_ESTADIAMINIMA NUMBER(1), - INDJUE_ESTADIAMINIMA NUMBER(1), INDVIE_ESTADIAMINIMA NUMBER(1), INDSAB_ESTADIAMINIMA NUMBER(1), - INDDOM_ESTADIAMINIMA NUMBER(1)); - EXCEPTION WHEN duplicate_column THEN NULL; -END -$$; \ No newline at end of file