Se agrega funcionalidad de descarga de FLUEC y Lista de Pasajeros:Fixes bug#AL-4552

master
Fernando Abimael Alvarez Uc 2024-08-09 17:30:40 -06:00
parent eb2fbeac3b
commit d046ca0d22
1 changed files with 8 additions and 0 deletions

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;