bug#al-3150

JCA - Espec Inativar Serviços
dev:
qua:
master
valdir.cordeiro 2023-10-27 10:36:11 -03:00
parent 4ad81c1902
commit f3815e5308
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.14.1</version> <version>1.15.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 ESQUEMA_CORRIDA ADD INDCORRIDADESATIVADA NUMERIC(1)';
exception when column_exists then null;
end;