AdmMono/src/db/migration/V20180404_1131__mantis10563...

7 lines
225 B
SQL

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