fixes bug#0010739

obs: adicionado o campo no formulario de endereço da empresa, criada a coluna no banco de dados 

dev: Daniel 
qua: Fabinho

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@79900 d1611594-4594-4d17-8e1d-87c2c4800839
master
bruno.neves 2018-03-14 13:44:29 +00:00
parent cb3eabff2f
commit 0f7960ad4c
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE EMPRESA ADD (NUMTELSACDEF VARCHAR2(14))';
exception when column_exists then null;
end;
/