bug#AL-1757

master
aristides@rjconsultores.com.br 2022-12-29 19:54:24 -03:00
parent 46a9bc08c9
commit bd886809b4
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.0.8</version>
<version>1.0.9</version>
<distributionManagement>
<repository>

View File

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