AdmMono/src/db/migration/V20190927_1706__mantis15631...

7 lines
243 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE EMPRESA ADD (INDIMPSEGOPCIONALENTVDAPOSTERIOR NUMBER(1))';
exception when column_exists then null;
end;