Merge pull request 'AL-2143' (#26) from AL-2143 into master

Reviewed-on: http://18.235.188.113:3000/utilidades/Flyway/pulls/26
Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>
master
pinheiro 2023-03-16 13:50:55 +00:00
commit 2aac62c3d2
2 changed files with 1 additions and 9 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.0.27</version> <version>1.0.28</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -1,8 +0,0 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'INSERT INTO CONSTANTE (CONSTANTE_ID, NOMBCONSTANTE, DESCCONSTANTE, VALORCONSTANTE, INDTIPOCONSTANTE, INDMANTENIMIENTOUSUARIO, ACTIVO, FECMODIF, USUARIO_ID)
VALUES (CONSTANTE_SEQ.nextval, ''EMAIL_SUPORTE_SCO_RJCONSULTORES'', ''EMAIL_SUPORTE_SCO_RJCONSULTORES'', ''suportesco.rjconsultores@totvs.com.br'', ''1'', ''1'', ''1'', sysdate, ''1'')';
exception when dup_val_on_index then null;
end;