fixes bug#AL_2302
parent
bf3f5bf986
commit
333fecb425
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>Flyway</artifactId>
|
||||
<version>1.3.3</version>
|
||||
<version>1.3.4</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CLASE_SERVICIO ADD (PORCPRICINGSEMELHANTE NUMBER(7,2))';
|
||||
exception when column_exists then null;
|
||||
end;
|
|
@ -0,0 +1,7 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CLASE_SERVICIO ADD (PORCPRICINGSEMELHANTE NUMBER(5,2))';
|
||||
exception when column_exists then null;
|
||||
end;
|
Loading…
Reference in New Issue