AdmMono/src/db/migration/V20181226_1540__mantis12843...

7 lines
217 B
SQL

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