From d4119845b1b32ec160c32b6a09a5f000be15f2d4 Mon Sep 17 00:00:00 2001 From: valdir Date: Mon, 19 Sep 2022 14:10:51 +0000 Subject: [PATCH] 53105 - Espec Regras de Arredondamento bug#al-1226 dev:valdevir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@114262 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20220913_0907__AL1226.sql | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/db/migration/V20220913_0907__AL1226.sql b/src/db/migration/V20220913_0907__AL1226.sql index 8bc815849..52e3e07b8 100644 --- a/src/db/migration/V20220913_0907__AL1226.sql +++ b/src/db/migration/V20220913_0907__AL1226.sql @@ -6,8 +6,9 @@ declare pragma exception_init (dup_val_on_index , -00001); begin execute immediate 'CREATE SEQUENCE "REDONDEO_ORGAOCONCEDENTE_SEQ" MINVALUE 1 MAXVALUE 999999999999999999 INCREMENT BY 1 START WITH 121 CACHE 20 NOORDER NOCYCLE NOKEEP NOSCALE GLOBAL'; - exception when dup_val_on_index then null; - exception when except_00955 then null; + exception + when dup_val_on_index then null; + when except_00955 then null; end; / declare @@ -28,6 +29,7 @@ begin FOREIGN KEY (REDONDEOCTRL_ID) REFERENCES REDONDEO_CTRL (REDONDEOCTRL_ID) ENABLE, FOREIGN KEY (ORGAOCONCEDENTE_ID) REFERENCES ORGAO_CONCEDENTE (ORGAOCONCEDENTE_ID) ENABLE )'; - exception when dup_val_on_index then null; - exception when except_00955 then null; + exception + when dup_val_on_index then null; + when except_00955 then null; end; \ No newline at end of file