From cc535bb85194a59a298ef53db84c7e1a5d710da2 Mon Sep 17 00:00:00 2001 From: Luna Mendes Date: Sat, 17 Nov 2018 18:27:37 -0300 Subject: [PATCH] schema.sql: add UNIQUE to icons.hash --- schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.sql b/schema.sql index f4a05d1..81a5fd9 100644 --- a/schema.sql +++ b/schema.sql @@ -49,7 +49,7 @@ CREATE TABLE IF NOT EXISTS icons ( key text, -- sha256 of the icon - hash text, + hash text UNIQUE, -- icon mime mime text NOT NULL,