Issue #11052: Incluir novos campos na venda com ordem de serviço

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@83038 d1611594-4594-4d17-8e1d-87c2c4800839
master
luis 2018-07-02 16:28:52 +00:00
parent aac73eb4dd
commit b70a077fbf
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 SECRETARIA add RUT NUMBER(12)';
execute immediate 'ALTER TABLE SECRETARIA add DIRSECRETARIA VARCHAR(60)';
execute immediate 'ALTER TABLE SECRETARIA add CIUDAD VARCHAR(60)';
exception when object_exists then null;
end;