PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

vincolo univoco sul tipo di dati Bytea su Postgresql

Crea un indice univoco su un digest:

CREATE UNIQUE INDEX idx_image_hash ON images (digest(img, 'sha1'));

Ciò presuppone che tu abbia installato l'estensione pgcrypto:

CREATE EXTENSION pgcrypto;