bug#al-3082

ANDORINHA -
Espec_10_-_Inclusao_Horario_Inicio_e_Fim_de_Embarque_no_Bilhete_1
dev:
qua:
master
valdir.cordeiro 2023-09-28 17:43:36 -03:00
parent d5c712dac3
commit 9af967eb27
2 changed files with 8 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.12.0</version> <version>1.13.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE EMPRESA ADD (HORAINICIOEMBARQUE DATE, HORAFIMEMBARQUE DATE)';
exception when column_exists then null;
end;