The Mediawiki interwiki table is defined by default as follows:
mysql> describe interwiki -> ; +-----------+------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+------------+------+-----+---------+-------+ | iw_prefix | char(32) | | PRI | | | | iw_url | char(127) | | | | | | iw_local | tinyint(1) | | | 0 | | +-----------+------------+------+-----+---------+-------+
I was trying to put a very long address into the iw_url field which exceeds the limit of 127 chars by a good margin, so I need to extend the iw_url field.
Now for the question - are there any other changes that are needed to to make this work?
Thanks in advance,
Ralf