Extension:AbuseFilter/abuse filter table/es
Fields
af_id
Primary key
af_pattern
The rules of the filter.
af_user
User ID of the last modifier.
af_user_text
User name of the last modifier.
af_timestamp
Typical MediaWiki timestamp of the last filter edit.
af_enabled
Whether the filter is enabled.
1
if it is, 0
otherwise.
af_comments
Comments about the filter (the ones shown below the rules editor).
af_public_comments
The public name of the filter.
af_hidden
Whether the filter is hidden.
1
if it is, 0
otherwise.
af_hit_count
The amount of hits registered by this filter.
af_throttled
Whether the filter is throttled.
1
if it is, 0
otherwise.
af_deleted
Whether the filter is deleted.
1
if it is, 0
otherwise.
af_actions
Comma-imploded list of actions enabled for this filter. Por ejemplo:
disallow,tag
af_global
Whether the filter is global.
1
if it is, 0
otherwise.
af_group
The group this filter belongs to, as defined in $wgAbuseFilterValidGroups
.
Schema
mysql> describe abuse_filter; +--------------------+---------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------------------+---------------------+------+-----+---------+----------------+ | af_id | bigint(20) unsigned | NO | PRI | NULL | auto_increment | | af_pattern | blob | NO | | NULL | | | af_user | bigint(20) unsigned | NO | MUL | NULL | | | af_user_text | varbinary(255) | NO | | NULL | | | af_timestamp | binary(14) | NO | | NULL | | | af_enabled | tinyint(1) | NO | | 1 | | | af_comments | blob | YES | | NULL | | | af_public_comments | tinyblob | YES | | NULL | | | af_hidden | tinyint(1) | NO | | 0 | | | af_hit_count | bigint(20) | NO | | 0 | | | af_throttled | tinyint(1) | NO | | 0 | | | af_deleted | tinyint(1) | NO | | 0 | | | af_actions | varbinary(255) | NO | | | | | af_global | tinyint(1) | NO | | 0 | | | af_group | varbinary(64) | NO | MUL | default | | +--------------------+---------------------+------+-----+---------+----------------+
Indexes
+--------------+------------+------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | +--------------+------------+------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+ | abuse_filter | 0 | PRIMARY | 1 | af_id | A | 0 | NULL | NULL | | BTREE | | | | abuse_filter | 1 | af_user | 1 | af_user | A | 0 | NULL | NULL | | BTREE | | | | abuse_filter | 1 | af_group_enabled | 1 | af_group | A | 0 | NULL | NULL | | BTREE | | | | abuse_filter | 1 | af_group_enabled | 2 | af_enabled | A | 0 | NULL | NULL | | BTREE | | | | abuse_filter | 1 | af_group_enabled | 3 | af_id | A | 0 | NULL | NULL | | BTREE | | | +--------------+------------+------------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+