AdmMono/src/db/migration/V20190114_1544__mantis13275...

7 lines
227 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE TRANSACAO_KONDUTO ADD (TIPO VARCHAR(10))';
exception when column_exists then null;
end;