Merge pull request 'fixes bug #AL-2441' (#28) from AL-2441 into master
Reviewed-on: http://18.235.188.113:3000/utilidades/Flyway/pulls/28 Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>master
commit
0b4d9c2fb2
2
pom.xml
2
pom.xml
|
@ -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.0.29</version>
|
<version>1.0.30</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<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