AdmMono/src/db/migration/V20201102_1545__mantis20776...

7 lines
223 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE LOG_AUDITORIA ADD (ID_AUDITADO NUMBER(15))';
exception when column_exists then null;
end;