[DS-2179] Shibboleth (and probably LDAP) logins fail after merge of Metadata For All

This commit is contained in:
KevinVdV
2014-10-08 12:42:01 +02:00
parent 9594c2b31a
commit 4ea9051c12
8 changed files with 13 additions and 43 deletions

View File

@@ -171,14 +171,15 @@ CREATE TABLE EPerson
require_certificate BOOL,
self_registered BOOL,
last_active TIMESTAMP,
sub_frequency INTEGER
sub_frequency INTEGER,
netid VARCHAR(64)
);
-- index by email
CREATE INDEX eperson_email_idx ON EPerson(email);
-- index by netid
--CREATE INDEX eperson_netid_idx ON EPerson(netid);
CREATE INDEX eperson_netid_idx ON EPerson(netid);
-------------------------------------------------------
-- EPersonGroup table