mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
8 lines
250 B
SQL
8 lines
250 B
SQL
|
|
-- Relation table between user and groups
|
|
CREATE TABLE /*$wgDBprefix*/user_groups (
|
|
ug_user int unsigned NOT NULL default '0',
|
|
ug_group varbinary(16) NOT NULL default '0',
|
|
PRIMARY KEY (ug_user,ug_group)
|
|
KEY (ug_group)
|
|
) /*$wgDBTableOptions*/;
|