AdmMono/src/db/migration/V20170208_1138__mantis8613.sql

17 lines
513 B
SQL

declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -01430);
begin
execute immediate 'ALTER TABLE COMISSAO ADD (INDINTEGRADOAG NUMBER(1) DEFAULT 0 NOT NULL)';
exception when dup_val_on_index then null;
end;
/
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -01430);
begin
execute immediate 'ALTER TABLE COMISSAO ADD CHECK (INDINTEGRADOAG IS NOT NULL)';
exception when dup_val_on_index then null;
end;