bug#10563

dev:veloso
qua:wallysson

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@80522 d1611594-4594-4d17-8e1d-87c2c4800839
master
frederico 2018-04-04 11:42:04 +00:00
parent c3b740a625
commit d1c818651e
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
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;