fixes bug#AL-2027

master
Fabio Faria 2023-01-18 13:26:30 -03:00
parent 6e2458393e
commit 3a467328fb
2 changed files with 1 additions and 52 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.15</version> <version>1.0.16</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -1,51 +0,0 @@
declare
dup_val_on_index exception;
except_02291 exception;
pragma exception_init (dup_val_on_index , -00001);
pragma exception_init (except_02291 , -02291);
begin
execute immediate 'delete from "schema_version" where "script" like ''%2020200713%'' ';
exception
when dup_val_on_index then null;
when except_02291 then null;
end;
/
declare
dup_val_on_index exception;
except_02291 exception;
pragma exception_init (dup_val_on_index , -00001);
pragma exception_init (except_02291 , -02291);
begin
execute immediate 'delete from "schema_version" where "script" like ''%202207114%'' ';
exception
when dup_val_on_index then null;
when except_02291 then null;
end;
/
declare
dup_val_on_index exception;
except_02291 exception;
pragma exception_init (dup_val_on_index , -00001);
pragma exception_init (except_02291 , -02291);
begin
execute immediate 'delete from "schema_version" where "script" like ''%202206122%'' ';
exception
when dup_val_on_index then null;
when except_02291 then null;
end;
/
declare
dup_val_on_index exception;
except_02291 exception;
pragma exception_init (dup_val_on_index , -00001);
pragma exception_init (except_02291 , -02291);
begin
execute immediate 'delete from "schema_version" where "script" like ''%201902221%'' ';
exception
when dup_val_on_index then null;
when except_02291 then null;
end;