AdmMono/src/db/migration/V20181206_1705__mantis12843...

7 lines
225 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE BPE ADD (CNPJAUTOREVENTO VARCHAR2(14))';
exception when column_exists then null;
end;