bug#al-2803

Espec Cobrança Taxa conveniência Operações de venda
dev:
qua:
master
valdir.cordeiro 2023-08-28 16:46:54 -03:00
parent 19ae05f4c4
commit 2fabb75d65
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.8.2</version>
<version>1.8.3</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 INDTAXACONVENIENCIASOVENDA NUMBER(1,0)';
exception when column_exists then null;
end;