Manual:msg_resource table
Jump to navigation
Jump to search
↑ Manual:Contents | MediaWiki database layout | msg_resource table |
MediaWiki versions: | 1.17 – 1.26 |
The msg_resource table was a table used to cache JSON message blobs for the resource loader. Its content can be deleted and excluded from backups as it will be regenerated when needed. See also Manual:Msg resource links table .
Field[edit]
mr_resource[edit]
Resource name.
mr_lang[edit]
Language code.
mr_blob[edit]
JSON blob.
mr_timestamp[edit]
Timestamp of last update.
Schema summary[edit]
MediaWiki versions: | 1.17 – 1.26 |
DESCRIBE msg_resource;
+--------------+----------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +--------------+----------------+------+-----+---------+-------+ | mr_resource | varbinary(255) | NO | PRI | NULL | | | mr_lang | varbinary(32) | NO | PRI | NULL | | | mr_blob | mediumblob | NO | | NULL | | | mr_timestamp | binary(14) | NO | | NULL | | +--------------+----------------+------+-----+---------+-------+