Manual:iwlinks table
Jump to navigation
Jump to search
↑ Manual:Contents | MediaWiki database layout | iwlinks table |
MediaWiki version: | ≥ 1.17 |
The iwlinks table stores the interwiki links with their targets. Not to confuse with the Langlinks table.
Fields[edit]
iwl_from[edit]
The page_id
of the referring page (i.e. the local page that the link appears on).
iwl_prefix[edit]
interwiki prefix code of the target. This is used the same way as a namespace is used when editing.
iwl_title[edit]
The title of the target page, including namespace (FULLPAGENAME style). Spaces are converted to underscores, but the first letter is not automatically capitalized. So for example, an interwiki link to w:foo bar would have an iwl_title of "foo_bar".
Schema summary[edit]
MediaWiki version: | ≥ 1.17 |
DESCRIBE iwlinks;
+------------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +------------+------------------+------+-----+---------+-------+ | iwl_from | int(10) unsigned | NO | PRI | 0 | | | iwl_prefix | varbinary(20) | NO | PRI | | | | iwl_title | varbinary(255) | NO | PRI | | | +------------+------------------+------+-----+---------+-------+
See also[edit]
- Manual:Interwiki table
- Manual:Langlinks table
- Manual:Pagelinks table
- r65104, adding this table to the schema