Merge pull request 'fixes bug#AL-4634' (!148) from AL-4634 into master
Reviewed-on: utilidades/Flyway#148 Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>master
commit
0901716ee8
2
pom.xml
2
pom.xml
|
@ -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.68.0</version>
|
<version>1.69.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
declare
|
declare
|
||||||
object_exists exception;
|
object_exists exception;
|
||||||
pragma exception_init (object_exists , -01430);
|
pragma exception_init (object_exists , -01430);
|
||||||
begin
|
begin
|
||||||
execute immediate 'ALTER TABLE PARADA ADD (CODSIGMA VARCHAR2(7))';
|
execute immediate 'ALTER TABLE PARADA ADD (CODSIGMA VARCHAR2(7))';
|
||||||
exception when object_exists then null;
|
exception when object_exists then null;
|
||||||
end;
|
end;
|
Loading…
Reference in New Issue