fixes bug#AL-5017

master
Wilian Domingues 2024-09-27 15:51:29 -03:00
parent f2d62b4a81
commit bd5154d11e
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE PARADA ADD LATITUDE NUMBER(10,8)';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE PARADA ADD LONGITUDE NUMBER(11,8)';
exception when column_exists then null;
end;