Merge branch 'master' into AL-3101

master
Julio Heredia 2023-10-27 16:00:28 -03:00
commit c776f8ff5b
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE ESQUEMA_CORRIDA ADD INDCORRIDADESATIVADA NUMERIC(1)';
exception when column_exists then null;
end;