wilian 2016-12-13 18:10:08 +00:00
parent f436fda7e5
commit 6e5904fbaf
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'ALTER TABLE FORMA_PAGO ADD (TIPO_PAGO NUMBER(2,0))';
exception when object_exists then null;
end;

View File

@ -0,0 +1,7 @@
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'ALTER TABLE PACOTE_TARIFA ADD (INDVENDAWEB NUMBER(1,0) DEFAULT 1)';
exception when object_exists then null;
end;