Merge pull request 'fixes bug AL-2895' (!51) from AL-2895 into master

Reviewed-on: utilidades/Flyway#51
Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>
master
Lucas Taiã 2023-07-06 13:24:40 +00:00
commit e4e9ed9d1b
2 changed files with 9 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.5.1</version>
<version>1.5.2</version>
<distributionManagement>
<repository>

View File

@ -0,0 +1,8 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE PTOVTA_EMPRESA ADD (MERCHANTSTOREADYEN VARCHAR2(200) )';
exception when column_exists then null;
end;
/