From 8929935a335ffd4e4a61babb47c441b9104258f4 Mon Sep 17 00:00:00 2001 From: alberto Date: Wed, 17 May 2017 17:34:06 +0000 Subject: [PATCH] =?UTF-8?q?Gerar=20lan=C3=A7amento=20comiss=C3=A3o=20no=20?= =?UTF-8?q?conta=20corrente=20da=20ag=C3=AAncia=20(issue=208900)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@68949 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170517_1435__mantis8900.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20170517_1435__mantis8900.sql diff --git a/src/db/migration/V20170517_1435__mantis8900.sql b/src/db/migration/V20170517_1435__mantis8900.sql new file mode 100644 index 000000000..ce3faa4b7 --- /dev/null +++ b/src/db/migration/V20170517_1435__mantis8900.sql @@ -0,0 +1,8 @@ +declare + dup_val_on_index exception; + pragma exception_init (dup_val_on_index , -00001); +begin + execute immediate 'INSERT INTO TIPO_OPERACION_CC (TIPOOPERACIONCC_ID, DESCTIPO, CVETIPO, INDCREDITO, ACTIVO, FECMODIF, USUARIO_ID) VALUES (5, ''COMISSAO'', ''CM'', 1, 1, SYSDATE, 99)'; + + exception when dup_val_on_index then null; +end; \ No newline at end of file