Integração API Revenue Geoloc - bug#AL-5017

master
Wilian Domingues 2024-10-16 15:53:06 -03:00
parent 7a6dd09851
commit 5491fbb82c
2 changed files with 8 additions and 1 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.99.0</version> <version>1.100.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -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;