Manual:Imagelinks table

From MediaWiki.org

Jump to: navigation, search
Manual:Contents MediaWiki database layout Imagelinks table


The imagelinks table stores all the links to images. This is good for a variety of functions, from link caching in the output functions to the "what links here" page.

MediaWiki version: 1.12 and later


+---------+-----------------+------+-----+---------+-------+
| Field   | Type            | Null | Key | Default | Extra |
+---------+-----------------+------+-----+---------+-------+
| il_from | int(8) unsigned | NO   |     | 0       |       |
| il_to   | varchar(255)    | NO   |     |         |       |
+---------+-----------------+------+-----+---------+-------+

il_from is the page_id of the page the link is on. il_to is the title of the file being linked to.

MediaWiki version: 1.10
MediaWiki version: 1.11


+---------+-----------------+------+-----+---------+-------+
| Field   | Type            | Null | Key | Default | Extra |
+---------+-----------------+------+-----+---------+-------+
| il_from | int(10) unsigned| NO   | PRI | 0       |       |
| il_to   | varchar(255)    | NO   | PRI | NULL    |       |
+---------+-----------------+------+-----+---------+-------+
MediaWiki version: 1.9 and all previous versions


+---------+-----------------+------+-----+---------+-------+
| Field   | Type            | Null | Key | Default | Extra |
+---------+-----------------+------+-----+---------+-------+
| il_from | int(8) unsigned | NO   | PRI | 0       |       |
| il_to   | varchar(255)    | NO   | PRI | NULL    |       |
+---------+-----------------+------+-----+---------+-------+