Merge pull request 'bug#al-2984' (!67) from AL2984 into master

Reviewed-on: utilidades/Flyway#67
Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>
master
Valdir Cordeiro 2023-09-19 12:19:58 +00:00
commit fe5f5bebb1
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.10.0</version>
<version>1.11.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_DESCUENTO ADD INDIMPORTESEGUROOPCIONAL NUMBER(1)';
exception when column_exists then null;
end;