fixes bug #AL-2441

master
valdevir 2023-03-31 02:58:58 -03:00
parent 91d8335170
commit 83138f2f86
3 changed files with 15 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.0.29</version>
<version>1.0.30</version>
<distributionManagement>
<repository>

View File

@ -0,0 +1,7 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'UPDATE constante set valorconstante = ''suporte.rjconsultores@totvs.com.br'' where nombconstante = ''EMAIL_SUPORTE_RJCONSULTORES''';
exception when dup_val_on_index then null;
end;

View File

@ -0,0 +1,7 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'UPDATE constante set valorconstante = ''suporte.rjconsultores@totvs.com.br'' where nombconstante = ''EMAIL_SUPORTE_RJCONSULTORES''';
exception when dup_val_on_index then null;
end;