fixes bug#2181

master
aristides@rjconsultores.com.br 2023-02-09 16:07:28 -03:00
parent 443425232a
commit ab0c6a0995
3 changed files with 7 additions and 1 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>Flyway</artifactId> <artifactId>Flyway</artifactId>
<version>1.0.20</version> <version>1.0.21</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

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

View File

@ -1,3 +1,6 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin begin
execute immediate 'ALTER TABLE ORGAO_CONCEDENTE ADD (MENSAGEMRECIBOTXCONVENIENCIA VARCHAR2(80))' ; execute immediate 'ALTER TABLE ORGAO_CONCEDENTE ADD (MENSAGEMRECIBOTXCONVENIENCIA VARCHAR2(80))' ;
exception when column_exists then null; exception when column_exists then null;