Merge pull request 'fixes bug#AL-4295' (!205) from AL-4295 into master
Reviewed-on: utilidades/Flyway#205 Reviewed-by: Julio Heredia <julio@rjconsultores.com.br>master
commit
f2d62b4a81
2
pom.xml
2
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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;
|
Loading…
Reference in New Issue