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