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-87c2c4800839master
parent
aac73eb4dd
commit
b70a077fbf
|
@ -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;
|
Loading…
Reference in New Issue