Merge pull request 'Ajustes envio email Izypay fixes bug#AL-4812' (!181) from AL-4812 into master

Reviewed-on: utilidades/Flyway#181
Reviewed-by: Célio de Souza Ribeiro JR <celio@rjconsultores.com.br>
master
fabio 2024-08-21 11:18:02 +00:00
commit b7abb3722b
2 changed files with 13 additions and 1 deletions

View File

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

View File

@ -0,0 +1,12 @@
declare
object_exists exception;
except_00957 exception;
pragma exception_init (object_exists , -01430);
pragma exception_init (except_00957 , -00957);
begin
execute immediate 'ALTER TABLE EMPRESA_IZIPAY_CONFIG RENAME COLUMN DIAS_CANCELA TO MINUTOS_CANCELA';
exception
when object_exists then null;
when except_00957 then null;
end;