Merge pull request 'AL-4552' (!169) from AL-4552 into master

Reviewed-on: utilidades/Flyway#169
Reviewed-by: fabio <fabio.faria@rjconsultores.com.br>
master
fabio 2024-08-12 12:22:34 +00:00
commit 067ce11da4
2 changed files with 9 additions and 1 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.79.3</version> <version>1.79.4</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -0,0 +1,8 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate
'ALTER TABLE SOLICITUD_EXPRESO ADD (DOCLISTAPASAJEROS BLOB)';
exception when object_exists then null;
end;