r23486 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r23485‎ | r23486 | r23487 >
Date:20:15, 27 June 2007
Author:robchurch
Status:old
Tags:
Comment:
Missing updater
Modified paths:
  • /branches/robchurch/logs/maintenance/archives/patch-rc_logging.sql (added) (history)
  • /branches/robchurch/logs/maintenance/updaters.inc (modified) (history)

Diff [purge]

Index: branches/robchurch/logs/maintenance/archives/patch-rc_logging.sql
@@ -0,0 +1,7 @@
 2+-- Introduce additional log-related columns to `recentchanges`
 3+-- to facilitate cleaner log formatting
 4+ALTER TABLE /*$wgDBprefix*/recentchanges
 5+ ADD rc_logid INT UNSIGNED NOT NULL DEFAULT '0',
 6+ ADD rc_log_type VARBINARY(255) NULL,
 7+ ADD rc_log_action VARBINARY(255) NULL,
 8+ ADD rc_params BLOB NULL;
\ No newline at end of file
Property changes on: branches/robchurch/logs/maintenance/archives/patch-rc_logging.sql
___________________________________________________________________
Added: svn:eol-style
19 + native
Index: branches/robchurch/logs/maintenance/updaters.inc
@@ -77,7 +77,8 @@
7878 array( 'revision', 'rev_parent_id', 'patch-rev_parent_id.sql' ),
7979 array( 'page_restrictions', 'pr_id', 'patch-page_restrictions_sortkey.sql' ),
8080 array( 'ipblocks', 'ipb_block_email', 'patch-ipb_emailban.sql' ),
81 - array( 'oldimage', 'oi_metadata', 'patch-oi_metadata.sql'),
 81+ array( 'oldimage', 'oi_metadata', 'patch-oi_metadata.sql' ),
 82+ array( 'recentchanges', 'rc_params', 'patch-rc_logging.sql' ),
8283 );
8384
8485 function rename_table( $from, $to, $patch ) {

Status & tagging log