Merge pull request 'fixes bug #AL-4634' (!144) from AL-4634 into master

Reviewed-on: utilidades/Flyway#144
Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>
master
pinheiro 2024-07-16 14:38:43 +00:00
commit 572e8e5660
2 changed files with 89 additions and 82 deletions

View File

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

View File

@ -0,0 +1,7 @@
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE PARADA ADD (CODSIGMA VARCHAR2(7))';
exception when object_exists then null;
end;