fixes bug#AL-4295

master
wallace.henrique 2024-09-23 15:26:42 -03:00
parent 91fdab48e8
commit dbc90dc89e
2 changed files with 8 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.95.0</version>
<version>1.96.0</version>
<distributionManagement>
<repository>

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE CATEGORIA ADD INDVENDEEMPEAPI NUMBER(1)';
exception when column_exists then null;
end;