* Add validate table and val_ip column through the updater.
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 27 May 2005 02:36:30 +0000 (02:36 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 27 May 2005 02:36:30 +0000 (02:36 +0000)
RELEASE-NOTES
maintenance/archives/patch-val_ip.sql [new file with mode: 0644]
maintenance/updaters.inc

index 3e183e5..cf2a651 100644 (file)
@@ -216,6 +216,7 @@ Various bugfixes, small features, and a few experimental things:
   admnistrators out of normal users.
 * links and brokenlinks tables merged to pagelinks; this will reduce pain
   dealing with moves and deletes of widely-linked pages.
+* Add validate table and val_ip column through the updater.
 
 
 === Caveats ===
diff --git a/maintenance/archives/patch-val_ip.sql b/maintenance/archives/patch-val_ip.sql
new file mode 100644 (file)
index 0000000..9214218
--- /dev/null
@@ -0,0 +1,4 @@
+-- Column added 2005-05-24
+
+ALTER TABLE /*$wgDBprefix*/validate
+  ADD COLUMN val_ip varchar(20) NOT NULL default '';
index 54abac4..cb249a7 100644 (file)
@@ -24,6 +24,7 @@ $wgNewTables = array(
        array( 'logging',       'patch-logging.sql' ),
        array( 'user_rights',   'patch-user_rights.sql' ),
        array( 'groups',        'patch-userlevels.sql' ),
+       array( 'validate',      'patch-validate.sql' ),
 );
 
 $wgNewFields = array(
@@ -47,6 +48,7 @@ $wgNewFields = array(
        array( 'image',         'img_width',        'patch-img_width.sql' ),
        array( 'image',         'img_metadata',     'patch-img_metadata.sql' ),
        array( 'image',         'img_media_type',   'patch-img_media_type.sql' ),
+       array( 'validate',      'val_ip',           'patch-val_ip.sql' ),
 );
 
 function rename_table( $from, $to, $patch ) {