AdmMono/src/db/migration/V20170627_1620__mantis9150.sql

8 lines
228 B
SQL

declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE EVENTO_EXTRA ADD (SERIEIMPFISCAL VARCHAR2(6))';
exception when object_exists then null;
end;