AdmMono/src/db/migration/V20161003_1637__mantis7788.sql

8 lines
235 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE INSTI_FINANCEIRA ADD (CONTAFINANCEIRAAG VARCHAR2(4))';
exception when column_exists then null;
end;