AdmMono/src/db/migration/V20161228_1031__mantis8120.sql

8 lines
243 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE EMPRESA_IMPOSTO ADD (TRIBUTACAOIMPORTACAO NUMBER(5,2))';
exception when column_exists then null;
end;