declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'alter table FORMA_PAGO add constraint uniq_fp_cvesistema unique("CVESISTEMA")';
exception when column_exists then null;
end;