dev:

qua: scripts Ebus

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@106023 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2021-03-31 13:59:25 +00:00
parent dc9c02a311
commit a1c0f80ef7
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate
'ALTER TABLE CONVENIO ADD (STATUS VARCHAR2(2))';
exception when object_exists then null;
end;
/