Index: trunk/phase3/maintenance/archives/patch-list.txt |
— | — | @@ -114,3 +114,14 @@ |
115 | 115 | |
116 | 116 | * 2003-05-30: File upload license fields |
117 | 117 | Adds fields to 'image' table. |
| 118 | +INCOMPLETE, DO NOT USE |
| 119 | + |
| 120 | + |
| 121 | +* 2003-08-21: Interwiki URL table |
| 122 | +Moves the interwiki prefix<->url mapping table from a static array |
| 123 | +into the database. If you've got a custom table, be sure to make |
| 124 | +your changes! |
| 125 | + |
| 126 | +Run patch-interwiki.sql to create the interwiki table, then the |
| 127 | +plain interwiki.sql to load up the default set of mappings. |
| 128 | + |
Index: trunk/phase3/maintenance/archives/patch-interwiki.sql |
— | — | @@ -0,0 +1,11 @@ |
| 2 | +-- Creates interwiki prefix<->url mapping table |
| 3 | +-- used from 2003-08-21 dev version. |
| 4 | +-- Import the default mappings from maintenance/interwiki.sql |
| 5 | + |
| 6 | +CREATE TABLE interwiki ( |
| 7 | + iw_prefix char(32) NOT NULL, |
| 8 | + iw_url char(127) NOT NULL, |
| 9 | + iw_local BOOL NOT NULL, |
| 10 | + UNIQUE KEY iw_prefix (iw_prefix) |
| 11 | +); |
| 12 | + |
Property changes on: trunk/phase3/maintenance/archives/patch-interwiki.sql |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 13 | + native |
Added: svn:keywords |
2 | 14 | + Author Date Id Revision |