Manual:protected_titles テーブル

This page is a translated version of the page Manual:Protected titles table and the translation is 75% complete.
Manual:コンテンツ MediaWiki のデータベース レイアウト protected_titles テーブル
MediaWiki バージョン:
1.12

The protected_titles table contains 保護 of non-existent pages. Restrictions on existing pages are stored in the page_restrictions table.

保護されているページの一覧は Special:Protectedtitles で確認できます。

フィールド

pt_namespace

名前空間 です。

pt_title

ページ名 です。

pt_user

ページ名を保護した利用者の利用者 ID です。

pt_reason

MediaWiki バージョン:
1.32

保護の理由 (コメント) です。

(廃止予定) pt_reason_id and the comment table should be used instead!

pt_reason_id

MediaWiki バージョン:
1.30

This is a foreign key to comment_id in the comment table.

pt_timestamp

保護を実行した際の タイムスタンプ (日時)

pt_expiry

保護の有効期限のタイムスタンプ (日時)

pt_create_perm

保護レベル

スキーマの要約

MediaWiki バージョン:
1.36

DESCRIBE protected_titles;

+----------------+---------------------+------+-----+---------+-------+
| Field          | Type                | Null | Key | Default | Extra |
+----------------+---------------------+------+-----+---------+-------+
| pt_namespace   | int(11)             | NO   | PRI | NULL    |       |
| pt_title       | varbinary(255)      | NO   | PRI | NULL    |       |
| pt_user        | int(10) unsigned    | NO   |     | NULL    |       |
| pt_reason_id   | bigint(20) unsigned | NO   |     | NULL    |       |
| pt_timestamp   | binary(14)          | NO   | MUL | NULL    |       |
| pt_expiry      | varbinary(14)       | NO   |     | NULL    |       |
| pt_create_perm | varbinary(60)       | NO   |     | NULL    |       |
+----------------+---------------------+------+-----+---------+-------+
MediaWiki バージョン:
1.33 – 1.35

DESCRIBE protected_titles;

+----------------+---------------------+------+-----+---------+-------+
| Field          | Type                | Null | Key | Default | Extra |
+----------------+---------------------+------+-----+---------+-------+
| pt_namespace   | int(11)             | NO   | PRI | NULL    |       |
| pt_title       | varbinary(255)      | NO   | PRI | NULL    |       |
| pt_user        | int(10) unsigned    | NO   |     | NULL    |       |
| pt_reason_id   | bigint(20) unsigned | NO   |     | NULL    |       |
| pt_timestamp   | binary(14)          | NO   | MUL | NULL    |       |
| pt_expiry      | varbinary(14)       | NO   |     |         |       |
| pt_create_perm | varbinary(60)       | NO   |     | NULL    |       |
+----------------+---------------------+------+-----+---------+-------+
MediaWiki バージョン:
1.30 – 1.32

DESCRIBE protected_titles;

+----------------+---------------------+------+-----+---------+-------+
| Field          | Type                | Null | Key | Default | Extra |
+----------------+---------------------+------+-----+---------+-------+
| pt_namespace   | int(11)             | NO   | PRI | NULL    |       |
| pt_title       | varbinary(255)      | NO   | PRI | NULL    |       |
| pt_user        | int(10) unsigned    | NO   |     | NULL    |       |
| pt_reason      | varbinary(767)      | YES  |     |         |       |
| pt_reason_id   | bigint(20) unsigned | NO   |     | 0       |       |
| pt_timestamp   | binary(14)          | NO   | MUL | NULL    |       |
| pt_expiry      | varbinary(14)       | NO   |     |         |       |
| pt_create_perm | varbinary(60)       | NO   |     | NULL    |       |
+----------------+---------------------+------+-----+---------+-------+
MediaWiki バージョン:
1.25 – 1.29

DESCRIBE protected_titles;

+----------------+------------------+------+-----+---------+-------+
| Field          | Type             | Null | Key | Default | Extra |
+----------------+------------------+------+-----+---------+-------+
| pt_namespace   | int(11)          | NO   | PRI | NULL    |       |
| pt_title       | varbinary(255)   | NO   | PRI | NULL    |       |
| pt_user        | int(10) unsigned | NO   |     | NULL    |       |
| pt_reason      | varbinary(767)   | YES  |     | NULL    |       |
| pt_timestamp   | binary(14)       | NO   | MUL | NULL    |       |
| pt_expiry      | varbinary(14)    | NO   |     |         |       |
| pt_create_perm | varbinary(60)    | NO   |     | NULL    |       |
+----------------+------------------+------+-----+---------+-------+
MediaWiki バージョン:
1.12 – 1.24

DESCRIBE protected_titles;

+----------------+------------------+------+-----+---------+-------+
| Field          | Type             | Null | Key | Default | Extra |
+----------------+------------------+------+-----+---------+-------+
| pt_namespace   | int(11)          | NO   | PRI | NULL    |       |
| pt_title       | varbinary(255)   | NO   | PRI | NULL    |       |
| pt_user        | int(10) unsigned | NO   |     | NULL    |       |
| pt_reason      | tinyblob         | YES  |     | NULL    |       |
| pt_timestamp   | binary(14)       | NO   | MUL | NULL    |       |
| pt_expiry      | varbinary(14)    | NO   |     |         |       |
| pt_create_perm | varbinary(60)    | NO   |     | NULL    |       |
+----------------+------------------+------+-----+---------+-------+

インデックス

MediaWiki バージョン:
1.32

SHOW INDEX IN protected_titles;

+------------------+------------+--------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table            | Non_unique | Key_name     | Seq_in_index | Column_name  | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+------------------+------------+--------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| protected_titles |          0 | PRIMARY      |            1 | pt_namespace | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| protected_titles |          0 | PRIMARY      |            2 | pt_title     | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| protected_titles |          1 | pt_timestamp |            1 | pt_timestamp | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
+------------------+------------+--------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+