Bolivariano - Troca de passagem não cobra e/ou devolve diferença feat

bug#AL-5085
master
valdir.cordeiro 2024-10-11 15:16:21 -03:00
parent ac59e03f9c
commit 737cbaddd3
2 changed files with 19 additions and 1 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>Flyway</artifactId> <artifactId>Flyway</artifactId>
<version>1.98.4</version> <version>1.99.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -0,0 +1,18 @@
declare
object_exists exception;
except_02275 exception;
except_02270 exception;
except_02261 exception;
pragma exception_init (object_exists , -01430);
pragma exception_init (except_02275 , -02275);
pragma exception_init (except_02270 , -02270);
pragma exception_init (except_02261 , -02261);
begin
execute immediate 'ALTER TABLE ORGAO_CANCELACION ADD(INDDEVOLUCAOTROCA NUMBER(1,0), INDCOBRANCATROCA NUMBER(1,0))';
exception
when object_exists then null;
when except_02275 then null;
when except_02270 then null;
when except_02261 then null;
end;