Index: trunk/phase3/maintenance/updaters.inc |
— | — | @@ -140,9 +140,9 @@ |
141 | 141 | function add_index( $table, $index, $patch, $fullpath=false ) { |
142 | 142 | global $wgDatabase; |
143 | 143 | if( $wgDatabase->indexExists( $table, $index ) ) { |
144 | | - echo "...$index key already set.\n"; |
| 144 | + echo "...$index key already set on $table table.\n"; |
145 | 145 | } else { |
146 | | - echo "Adding $index key... "; |
| 146 | + echo "Adding $index key to table $table... "; |
147 | 147 | if( $fullpath ) { |
148 | 148 | dbsource( $patch, $wgDatabase ); |
149 | 149 | } else { |