AdmMono/src/db/migration/V20191211_1850__mantis14994...

7 lines
228 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE CUPON_SECRETARIA ADD CREDITO NUMBER(10,2)';
exception when column_exists then null;
end;