Index: trunk/phase3/maintenance/populateRevisionSha1.php |
— | — | @@ -68,7 +68,7 @@ |
69 | 69 | $start = $db->selectField( $table, "MIN($idCol)", false, __METHOD__ ); |
70 | 70 | $end = $db->selectField( $table, "MAX($idCol)", false, __METHOD__ ); |
71 | 71 | if ( !$start || !$end ) { |
72 | | - $this->output( "...revision table seems to be empty.\n" ); |
| 72 | + $this->output( "...$table table seems to be empty.\n" ); |
73 | 73 | return true; |
74 | 74 | } |
75 | 75 | |
Index: trunk/phase3/includes/installer/SqliteUpdater.php |
— | — | @@ -64,8 +64,7 @@ |
65 | 65 | array( 'addTable', 'config', 'patch-config.sql' ), |
66 | 66 | array( 'addIndex', 'logging', 'type_action', 'patch-logging-type-action-index.sql'), |
67 | 67 | array( 'addField', 'revision', 'rev_sha1', 'patch-rev_sha1.sql' ), |
68 | | - array( 'addField', 'archive', 'ar_sha1', 'patch-ar_sha1.sql' ), |
69 | | - array( 'doPopulateRevSha1' ), |
| 68 | + array( 'addField', 'archive', 'ar_sha1', 'patch-ar_sha1.sql' ) |
70 | 69 | ); |
71 | 70 | } |
72 | 71 | |