fixes # AL-2782

master
valdevir 2023-08-18 20:22:46 -03:00
parent b2304e9e41
commit e8033db0af
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 PRICING ADD (INDEXIBEPOPUPPRICINGPOL NUMBER(1))';
exception when column_exists then null;
end;