Attention: All pages of this wiki depend on the pages that come before it, in order as they are listed on the Main Page. Please check for Dependencies.
Please also look at What You Need to Know Before Using This Wiki

/Computerisms/sites/wiki.computerisms.com/extensions/LdapAuthentication/ldap.sql

From COCNM
Revision as of 02:20, 19 September 2013 by Bob (talk | contribs) (1 revision)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
CREATE TABLE ldap_domains (
        domain_id serial primary key,
        domain varchar(255) not null,
        user_id int not null
);

CREATE INDEX user_id on ldap_domains (user_id);