AdmMono/src/db/migration/V20171101_1600__mantis9930.sql

7 lines
252 B
SQL

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;