fixes # AL-2782
parent
b2304e9e41
commit
e8033db0af
|
@ -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;
|
Loading…
Reference in New Issue