From: Brion Vibber Date: Fri, 6 Jul 2007 15:57:12 +0000 (+0000) Subject: be a little clearer in add_index() X-Git-Tag: 1.31.0-rc.0~52244 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=9967fe8026d17f3a469e6edbfd9294cba0abea50;p=lhc%2Fweb%2Fwiklou.git be a little clearer in add_index() --- diff --git a/maintenance/updaters.inc b/maintenance/updaters.inc index 0bbbd2b96f..585679f37a 100644 --- a/maintenance/updaters.inc +++ b/maintenance/updaters.inc @@ -140,9 +140,9 @@ function add_field( $table, $field, $patch, $fullpath=false ) { function add_index( $table, $index, $patch, $fullpath=false ) { global $wgDatabase; if( $wgDatabase->indexExists( $table, $index ) ) { - echo "...$index key already set.\n"; + echo "...$index key already set on $table table.\n"; } else { - echo "Adding $index key... "; + echo "Adding $index key to table $table... "; if( $fullpath ) { dbsource( $patch, $wgDatabase ); } else {