mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
13 lines
267 B
SQL
13 lines
267 B
SQL
CREATE TABLE ldap_domains (
|
|
-- IF for domain
|
|
domain_id serial PRIMARY KEY,
|
|
|
|
-- domain itself
|
|
domain varchar(255) not null,
|
|
|
|
-- User to which this domain belongs
|
|
user_id integer not null
|
|
|
|
) /*$wgDBTableOptions*/;
|
|
|
|
CREATE INDEX user_id on ldap_domains (user_id);
|