aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@cake.ukcod.org.uk>2010-03-05 15:26:18 +0000
committerMatthew Somerville <matthew@cake.ukcod.org.uk>2010-03-05 15:26:18 +0000
commite5dd4593d3711313365b5a3e6d74d41142287253 (patch)
tree072ccf81434458a0a76c941677fe70812e5dbd2e
parent9d9b077d4ade97e65efa41daf45adfb68d068932 (diff)
Not unique index, could have multiple entries.
-rw-r--r--db/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.sql b/db/schema.sql
index 18b3282ed..7b1bee1c6 100644
--- a/db/schema.sql
+++ b/db/schema.sql
@@ -304,7 +304,7 @@ create table partial_user (
email text not null,
phone text not null
);
-create unique index partial_user_service_email_idx on partial_user(service, email);
+create index partial_user_service_email_idx on partial_user(service, email);
-- Record imported Flickr photos so we don't fetch them twice
create table flickr_imported (