Index: trunk/phase3/maintenance/populateRevisionSha1.php |
— | — | @@ -32,10 +32,10 @@ |
33 | 33 | public function execute() { |
34 | 34 | $db = wfGetDB( DB_MASTER ); |
35 | 35 | |
36 | | - $this->output( "Populating rev_len column\n" ); |
| 36 | + $this->output( "Populating rev_sha1 column\n" ); |
37 | 37 | $this->doSha1Updates( $db, 'revision', 'rev_id', 'rev' ); |
38 | 38 | |
39 | | - $this->output( "Populating ar_len column\n" ); |
| 39 | + $this->output( "Populating ar_sha1 column\n" ); |
40 | 40 | $this->doSha1Updates( $db, 'archive', 'ar_rev_id', 'ar' ); |
41 | 41 | |
42 | 42 | if ( $db->insert( |