↑ Manual:Contents | MediaWiki database layout | user_former_groups table |
MediaWiki version: | ≥ 1.18 |
The user_former_groups table stores the groups the user has once belonged to (will not contain groups the user had belonged to before MW 1.17). The user may again belong to these groups; check the table user_groupsr90749.
, if you want to know. This is used to keep MediaWiki from automatically adding users to groups from which they have been manually removed before. The table was added inFields
ufg_user
Key to user_id
.ufg_group
Name of the group, which the user was member of.
Schema summary
MediaWiki version: | ≥ 1.21 |
DESCRIBE user_former_groups;
+-----------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+------------------+------+-----+---------+-------+ | ufg_user | int(10) unsigned | NO | PRI | 0 | | | ufg_group | varbinary(255) | NO | PRI | | | +-----------+------------------+------+-----+---------+-------+
MediaWiki versions: | 1.19 – 1.20 |
DESCRIBE user_former_groups;
+-----------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+------------------+------+-----+---------+-------+ | ufg_user | int(10) unsigned | NO | PRI | 0 | | | ufg_group | varbinary(32) | NO | PRI | NULL | | +-----------+------------------+------+-----+---------+-------+
MediaWiki version: | 1.18 |
DESCRIBE user_former_groups;
+-----------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+------------------+------+-----+---------+-------+ | ufg_user | int(10) unsigned | NO | PRI | 0 | | | ufg_group | varbinary(16) | NO | PRI | NULL | | +-----------+------------------+------+-----+---------+-------+
Indexes
MediaWiki version: | ≥ 1.30 |
SHOW INDEX IN user_former_groups;
+--------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | +--------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | user_former_groups | 0 | PRIMARY | 1 | ufg_user | A | 0 | NULL | NULL | | BTREE | | | | user_former_groups | 0 | PRIMARY | 2 | ufg_group | A | 0 | NULL | NULL | | BTREE | | | +--------------------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.