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;
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;