]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
user_id in user_openid should not be unique
authorEvan Prodromou <evan@prodromou.name>
Wed, 18 Jun 2008 07:04:30 +0000 (03:04 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 18 Jun 2008 07:04:30 +0000 (03:04 -0400)
darcs-hash:20080618070430-84dde-403d695209ab88f2d0c4e54da333698c6fe5883a.gz

db/laconica.sql

index 004448299a57ad0bc21f922765a44d6d64db489f..03e823d50dbbdb65785cb6334cf922b3f1cb3360 100644 (file)
@@ -119,9 +119,11 @@ create table nonce (
 create table user_openid (
     canonical varchar(255) primary key comment 'Canonical true URL',
     display varchar(255) not null unique key comment 'URL for viewing, may be different from canonical',
-    user_id integer not null unique key comment 'user owning this URL' references user (id),
+    user_id integer not null comment 'user owning this URL' references user (id),
     created datetime not null comment 'date this record was created',
-    modified timestamp comment 'date this record was modified'
+    modified timestamp comment 'date this record was modified',
+    
+    index user_openid_user_id_idx (user_id)
 ) ENGINE=InnoDB;
 
 /* These are used by JanRain OpenID library */