diff --git a/src/db/migration/V20200128_1454__mantis16537.sql b/src/db/migration/V20200128_1454__mantis16537.sql deleted file mode 100644 index 22e184db8..000000000 --- a/src/db/migration/V20200128_1454__mantis16537.sql +++ /dev/null @@ -1,5 +0,0 @@ -declare -begin - execute immediate 'insert into FORMA_PAGO(formapago_id,descpago, activo, fecmodif, usuario_id, cvepago, tipo_pago, cvesistema) values (FORMA_PAGO_SEQ.nextval, ''CARTEIRA DIGITAL TROCO SIMPLES'', 1,sysdate,1, ''TS'', 12, ''CARTEIRA_DIGITAL_TS'')'; - exception when others then null; -end; \ No newline at end of file diff --git a/src/db/postgresql/migration/V20200128_1454__mantis16537.sql b/src/db/postgresql/migration/V20200128_1454__mantis16537.sql deleted file mode 100644 index 86c4722ae..000000000 --- a/src/db/postgresql/migration/V20200128_1454__mantis16537.sql +++ /dev/null @@ -1,7 +0,0 @@ -DO $$ -BEGIN - insert into FORMA_PAGO(formapago_id,descpago, activo, fecmodif, usuario_id, cvepago, tipo_pago, cvesistema) - values (FORMA_PAGO_SEQ.nextval, 'CARTEIRA DIGITAL TROCO SIMPLES', 1,sysdate,1, 'TS', 12, 'CARTEIRA_DIGITAL_TS'); - EXCEPTION WHEN unique_violation THEN NULL; -END -$$;