AdmMono/src/db/migration/V20190603_1520__Mantis14554...

9 lines
221 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE BPE ADD (EMPRESA_ID NUMBER(7))';
exception when column_exists then null;
end;