AdmMono/src/db/migration/V20170911_1230__mantis9792.sql

24 lines
686 B
SQL

declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE ESTACION add INDSTOCKCENTRAL NUMBER(1)';
exception when object_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE ESTACION_IMPRESORA add ESTACIONCENTRAL_ID NUMBER(7)';
exception when object_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE FOLIO_PREIMPRESO add CONFIRMANDO NUMBER(7)';
exception when object_exists then null;
end;