master
aristides@rjconsultores.com.br 2023-02-07 08:27:06 -03:00
parent d057020b05
commit d11b718dd9
3 changed files with 18 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.19</version>
<version>1.0.20</version>
<distributionManagement>
<repository>

View File

@ -0,0 +1,13 @@
begin
execute immediate 'ALTER TABLE ORGAO_CONCEDENTE ADD (TAXACONVENIENCIAPORC NUMBER(7,2))';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE ORGAO_CONCEDENTE ADD (MAXTAXACONVENIENCIAPORTARIFA NUMBER(7,2))';
exception when column_exists then null;
end;
/

View File

@ -0,0 +1,4 @@
begin
execute immediate 'ALTER TABLE ORGAO_CONCEDENTE ADD (MENSAGEMRECIBOTXCONVENIENCIA VARCHAR2(80))';
exception when column_exists then null;
end;