fixes bug #AL-2441
parent
91d8335170
commit
83138f2f86
2
pom.xml
2
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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;
|
|
@ -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;
|
Loading…
Reference in New Issue