Manual:Archive table
↑ Manual:Contents | MediaWiki database layout | Archive table |
Contents |
The archive table is the place where MediaWiki stores information on deleted pages. The pages may be restored, or undeleted, by a MediaWiki Administrator using the Special:Undelete special page. Beginning in MediaWiki 1.5, the content of the pages remains in the text table; the deletion time is logged in the logging table.
When a page is deleted, all its old revisions move from the revision table to the archive table. When a page is then restored, its revisions are removed from the archive table, and recreated in the revision table.
The archive table is broadly related to the old table and revision table in layout, but there is no primary key on the table. Previous to MediaWiki 1.5, content from the text table was moved here, so individual revisions had non-empty ar_text contents. That text could have been compressed, and in those cases, it was marked by gzip on the revision's ar_flags field. There is also not presently a record of when deletion occurred, making it hard to separate multiple delete cycles or distinguish old deletions from recent deletions of pages that haven't been edited in a long time.
MediaWiki version: | 1.19 |
DESCRIBE archive
+---------------+---------------------+------+-----+----------------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------+---------------------+------+-----+----------------+-------+ | ar_namespace | int(11) | NO | MUL | 0 | | | ar_title | varbinary(255) | NO | | | | | ar_text | mediumblob | NO | | NULL | | | ar_comment | tinyblob | NO | | NULL | | | ar_user | int(10) unsigned | NO | | 0 | | | ar_user_text | varbinary(255) | NO | MUL | NULL | | | ar_timestamp | binary(14) | NO | | | | | ar_minor_edit | tinyint(4) | NO | | 0 | | | ar_flags | tinyblob | NO | | NULL | | | ar_rev_id | int(10) unsigned | YES | MUL | NULL | | | ar_text_id | int(10) unsigned | YES | | NULL | | | ar_deleted | tinyint(3) unsigned | NO | | 0 | | | ar_len | int(10) unsigned | YES | | NULL | | | ar_page_id | int(10) unsigned | YES | | NULL | | | ar_parent_id | int(10) unsigned | YES | | NULL | | | ar_sha1 | varbinary(32) | NO | | | | +---------------+---------------------+------+-----+----------------+-------+
[edit] Fields
[edit] ar_namespace
Basic page information: contains the namespace of the deleted revision. These contain the value in page_namespace.
[edit] ar_title
Basic page information: contains the page title of the deleted page, which is the same as page_title.
[edit] ar_text
MediaWiki version: | ≤ 1.4 |
Not used; the revision text remains in the text table. Newly deleted pages will not store text in this table, but will rather reference the separately existing text rows. The behavior before MediaWiki 1.5 was different; old archived pages saved their text here, so this field remains for backward compatibility.
Note: Text may be gzipped or otherwise funky.
[edit] ar_comment
Basic revision information: contains the edit summary of the deleted revision, analogous to rev_comment.
[edit] ar_user
Basic revision information: contains the user ID of the user who made the deleted revision; it is the same as user_id and rev_user. The value for this field is 0 for anonymous edits, initializations scripts, and for some mass imports.
[edit] ar_user_text
Basic revision information: This field contains the text of the editor's username, or the IP address of the editor if the deleted revision was done by an unregistered user. Comparable to rev_user_text.
[edit] ar_timestamp
This field contains the time at which the revision was originally saved. It is the equivalent of rev_timestamp.
Note: This is not the timestamp of article deletion; that is saved in the deletion log entry, in the logging table's log_timestamp.
[edit] ar_minor_edit
Basic revision information: Records whether the user marked the deleted revision as a minor edit. If the value for this field is 1, then the edit is tagged as 'minor'; it is 0 otherwise. This is equivalent to rev_minor_edit.
[edit] ar_flags
Similar to old_flags in the text table. Contains the following possible values:
gzip | Text is compressed with PHP's gzdeflate() function. |
utf-8 | Text was stored as UTF-8.![]() |
object | Text field contained a serialized PHP object.![]() |
[edit] ar_rev_id
MediaWiki version: | ≥ 1.5 |
When revisions are deleted, their unique rev_id is stored here so it can be retained after undeletion. This is necessary to retain permalinks to given revisions after accidental delete cycles or messy operations like history merges.
Note: Old entries from 1.4 will be NULL here, and a new rev_id will be created on undeletion for those revisions.
[edit] ar_text_id
MediaWiki version: | ≥ 1.5 |
For revisions deleted in MediaWiki 1.5 and later, this is a key to old_id within the text table; that is, it is the key to the stored text in the storage backend. To avoid breaking the block-compression scheme and otherwise making storage changes harder, the actual text is *not* deleted from the text table; rather, the text is merely hidden by removal of the page and revision entries. Comparable to rev_text_id.
Note: Old entries deleted under MediaWiki 1.2-1.4 will have NULL values in this field, and their ar_text and ar_flags fields will be used to create a new text row upon undeletion.
[edit] ar_deleted
MediaWiki version: | ≥ 1.10 |
This field is reserved for the RevDelete/Suppression (Oversight) system. Equivalent to rev_deleted.
[edit] ar_len
MediaWiki version: | ≥ 1.10 |
This field contains the length of the deleted revision, in bytes. Analogous to rev_len.
[edit] ar_page_id
MediaWiki version: | ≥ 1.11 |
Reference to page_id. Useful for sysadmin fixing of large pages merged together in the archives, or for cleanly restoring a page at its original ID number if possible. Comparable to rev_page. Will be NULL for pages deleted prior to 1.11.
[edit] ar_parent_id
MediaWiki version: | ≥ 1.13 |
- The revision id of the previous revision to the page. Populated from rev_parent_id. Will be null for revisions deleted prior to 1.13.
[edit] ar_sha1
MediaWiki version: | ≥ 1.19 |
The SHA-1 text content hash in base-36. Populated from rev_sha1.
[edit] Previous versions
MediaWiki version: | 1.14 |
DESCRIBE archive
+---------------+---------------------+------+-----+----------------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------+---------------------+------+-----+----------------+-------+ | ar_namespace | int(11) | NO | MUL | 0 | | | ar_title | varbinary(255) | NO | | | | | ar_text | mediumblob | NO | | NULL | | | ar_comment | tinyblob | NO | | NULL | | | ar_user | int(10) unsigned | NO | | 0 | | | ar_user_text | varbinary(255) | NO | MUL | NULL | | | ar_timestamp | binary(14) | NO | | | | | ar_minor_edit | tinyint(4) | NO | | 0 | | | ar_flags | tinyblob | NO | | NULL | | | ar_rev_id | int(10) unsigned | YES | | NULL | | | ar_text_id | int(10) unsigned | YES | | NULL | | | ar_deleted | tinyint(3) unsigned | NO | | 0 | | | ar_len | int(10) unsigned | YES | | NULL | | | ar_page_id | int(10) unsigned | YES | | NULL | | | ar_parent_id | int(10) unsigned | YES | | NULL | | +---------------+---------------------+------+-----+----------------+-------+
MediaWiki version: | 1.12 |
+---------------+---------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------+---------------------+------+-----+---------+-------+ | ar_namespace | int(11) | NO | MUL | 0 | | | ar_title | varchar(255) | NO | | NULL | | | ar_text | mediumblob | NO | | NULL | | | ar_comment | tinyblob | NO | | NULL | | | ar_user | int(5) unsigned | NO | | 0 | | | ar_user_text | varchar(255) | NO | MUL | NULL | | | ar_timestamp | char(14) | NO | | NULL | | | ar_minor_edit | tinyint(1) | NO | | 0 | | | ar_flags | tinyblob | NO | | NULL | | | ar_rev_id | int(8) unsigned | YES | | NULL | | | ar_text_id | int(8) unsigned | YES | | NULL | | | ar_deleted | tinyint(1) unsigned | NO | | 0 | | | ar_len | int(8) unsigned | YES | | NULL | | | ar_page_id | int(10) unsigned | YES | | NULL | | +---------------+---------------------+------+-----+---------+-------+
MediaWiki version: | 1.11 |
+---------------+---------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------+---------------------+------+-----+---------+-------+ | ar_namespace | int(11) | NO | MUL | 0 | | | ar_title | varchar(255) | NO | | NULL | | | ar_text | mediumblob | NO | | NULL | | | ar_comment | tinyblob | NO | | NULL | | | ar_user | int(10) unsigned | NO | | 0 | | | ar_user_text | varchar(255) | NO | MUL | NULL | | | ar_timestamp | binary(14) | NO | | NULL | | | ar_minor_edit | tinyint(4) | NO | | 0 | | | ar_flags | tinyblob | NO | | NULL | | | ar_rev_id | int(10) unsigned | YES | | NULL | | | ar_text_id | int(10) unsigned | YES | | NULL | | | ar_deleted | tinyint(3) unsigned | NO | | 0 | | | ar_len | int(10) unsigned | YES | | NULL | | | ar_page_id | int(10) unsigned | YES | | NULL | | +---------------+---------------------+------+-----+---------+-------+
MediaWiki version: | 1.10 |
+---------------+---------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------+---------------------+------+-----+---------+-------+ | ar_namespace | int(11) | NO | MUL | 0 | | | ar_title | varchar(255) | NO | | NULL | | | ar_text | mediumblob | NO | | NULL | | | ar_comment | tinyblob | NO | | NULL | | | ar_user | int(5) unsigned | NO | | 0 | | | ar_user_text | varchar(255) | NO | | NULL | | | ar_timestamp | char(14) | NO | | NULL | | | ar_minor_edit | tinyint(1) | NO | | 0 | | | ar_flags | tinyblob | NO | | NULL | | | ar_rev_id | int(8) unsigned | YES | | NULL | | | ar_text_id | int(8) unsigned | YES | | NULL | | | ar_deleted | tinyint(1) unsigned | NO | | 0 | | | ar_len | int(8) unsigned | YES | | NULL | | +---------------+---------------------+------+-----+---------+-------+
MediaWiki version: | 1.5 |
MediaWiki version: | 1.6 |
MediaWiki version: | 1.7 |
MediaWiki version: | 1.8 |
MediaWiki version: | 1.9 |
+---------------+-----------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------+-----------------+------+-----+---------+-------+ | ar_namespace | int(11) | NO | MUL | 0 | | | ar_title | varchar(255) | NO | | NULL | | | ar_text | mediumblob | NO | | NULL | | | ar_comment | tinyblob | NO | | NULL | | | ar_user | int(5) unsigned | NO | | 0 | | | ar_user_text | varchar(255) | NO | | NULL | | | ar_timestamp | char(14) | NO | | NULL | | | ar_minor_edit | tinyint(1) | NO | | 0 | | | ar_flags | tinyblob | NO | | NULL | | | ar_rev_id | int(8) unsigned | YES | | NULL | | | ar_text_id | int(8) unsigned | YES | | NULL | | +---------------+-----------------+------+-----+---------+-------+
MediaWiki version: | 1.4 | and older |
+---------------+---------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------+---------------------+------+-----+---------+-------+ | ar_namespace | tinyint(2) unsigned | | | 0 | | | ar_title | varchar(255) binary | | | | | | ar_text | mediumtext | | | | | | ar_comment | tinyblob | | | | | | ar_user | int(5) unsigned | | | 0 | | | ar_user_text | varchar(255) binary | | | | | | ar_timestamp | varchar(14) binary | | | | | | ar_minor_edit | tinyint(1) | | | 0 | | | ar_flags | tinyblob | | | | | +---------------+---------------------+------+-----+---------+-------+
Language: | English • 日本語 |
---|