AdmMono/src/db/migration/V20180215_1619__mantis10541...

7 lines
212 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE BOLETO ADD COO VARCHAR(6)';
exception when column_exists then null;
end;