Merge pull request 'AL-2756' (!55) from AL-2756 into master
Reviewed-on: utilidades/Flyway#55 Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>master
commit
4759832de9
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.6.2</version>
|
||||
<version>1.6.3</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE ESQUEMA_CORRIDA_EMBRQ_DESEMBRQ ADD (IS_VISUALIZAR_NA_API NUMBER(1,0))';
|
||||
exception when column_exists then null;
|
||||
end;
|
Loading…
Reference in New Issue