Merge pull request 'Integração API Revenue Geoloc - bug#AL-5017' (!215) from al-5017 into master
Reviewed-on: utilidades/Flyway#215 Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>master
commit
e624aaa02c
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.99.0</version>
|
||||
<version>1.100.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE REVENUE_CONFIG ADD URL_GEOLOC VARCHAR(200)';
|
||||
exception when column_exists then null;
|
||||
end;
|
Loading…
Reference in New Issue