Merge pull request 'fixes bug#AL-2074' (#22) from AL-2074 into master

Reviewed-on: http://18.235.188.113:3000/utilidades/Flyway/pulls/22
Reviewed-by: aristides <aristides@rjconsultores.com.br>
Reviewed-by: Wilian Domingues <wilian@rjconsultores.com.br>
master
Wilian Domingues 2023-03-09 21:00:58 +00:00
commit 80451a7e8c
3 changed files with 15 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.23</version>
<version>1.0.24</version>
<distributionManagement>
<repository>

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE USUARIO ADD INDTROCASENHA NUMBER(1,0)' ;
exception when column_exists then null;
end;

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE USUARIO ADD INDTROCASENHA NUMBER(1,0)' ;
exception when column_exists then null;
end;