Merge branch 'master' into AL-3101

master
Julio Heredia 2023-10-27 14:01:15 +00:00
commit 2fd35c9cd1
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;