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: Difference between revisions

From COCNM
Jump to navigation Jump to search
m (1 revision)
 
(No difference)

Latest revision as of 02:20, 19 September 2013

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);