Do not add an empty class=''
[mediawiki.git] / maintenance / updaters.inc
blob190b29a88e97b0eaf63eb73b9ce48bd1f36c1cd2
1 <?php
2 /**
3  * @addtogroup Maintenance
4  */
6  /** */
8 if ( !defined( 'MEDIAWIKI' ) ) {
9         echo "This file is not a valid entry point\n";
10         exit( 1 );
13 require_once 'convertLinks.inc';
14 require_once 'userDupes.inc';
15 require_once 'deleteDefaultMessages.php';
16 # Extension updates
17 require_once( "$IP/includes/Hooks.php" );
19 /**
20  * List of update functions to call on a MySQL-based MediaWiki installation,
21  * in sequence. First item is function name, rest are parameters to pass.
22  */
23 $wgMysqlUpdates = array(
24         // 1.2
25         // update_passwords obsolete
26         array( 'add_field', 'ipblocks',      'ipb_id',           'patch-ipblocks.sql' ),
27         array( 'add_field', 'ipblocks',      'ipb_expiry',       'patch-ipb_expiry.sql' ),
28         array( 'do_interwiki_update' ),
29         array( 'do_index_update' ),
30         // do_linkscc_update obsolete
31         array( 'add_table', 'hitcounter',                        'patch-hitcounter.sql' ),
32         array( 'add_field', 'recentchanges', 'rc_type',          'patch-rc_type.sql' ),
33         
34         // 1.3
35         array( 'add_field', 'user',          'user_real_name',   'patch-user-realname.sql' ),
36         array( 'add_table', 'querycache',                        'patch-querycache.sql' ),
37         array( 'add_table', 'objectcache',                       'patch-objectcache.sql' ),
38         array( 'add_table', 'categorylinks',                     'patch-categorylinks.sql' ),
39         // do_linkscc_1_3_update obsolete
40         array( 'do_old_links_update' ),
41         array( 'add_field', 'recentchanges', 'rc_ip',            'patch-rc_ip.sql' ),
42         
43         // 1.4
44         array( 'do_image_name_unique_update' ),
45         array( 'add_field', 'recentchanges', 'rc_id',            'patch-rc_id.sql' ),
46         array( 'add_field', 'recentchanges', 'rc_patrolled',     'patch-rc-patrol.sql' ),
47         array( 'add_table', 'logging',                           'patch-logging.sql' ),
48         // do_user_rights_update obsolete
49         array( 'add_field', 'user',          'user_token',       'patch-user_token.sql' ),
50         // old, old_articleid, patch-remove-old-title-namespace.sql obsolete
51         // user_groups, patch-userlevels.sql obsolete
52         // do_group_update() obsolete
53         array( 'do_watchlist_update' ),
54         array( 'do_user_update' ),
55         // do_copy_newtalk_to_watchlist obsolete
56         
57         // 1.5
58         array( 'do_schema_restructuring' ),
59         array( 'add_field', 'logging',       'log_params',       'patch-log_params.sql' ),
60         array( 'check_bin', 'logging',       'log_title',        'patch-logging-title.sql', ),
61         array( 'add_field', 'archive',       'ar_rev_id',        'patch-archive-rev_id.sql' ),
62         array( 'add_field', 'page',          'page_len',         'patch-page_len.sql' ),
63         array( 'do_inverse_timestamp' ),
64         array( 'do_text_id' ),
65         array( 'add_field', 'revision',      'rev_deleted',      'patch-rev_deleted.sql' ),
66         array( 'add_field', 'image',         'img_width',        'patch-img_width.sql' ),
67         array( 'add_field', 'image',         'img_metadata',     'patch-img_metadata.sql' ),
68         array( 'add_field', 'user',          'user_email_token', 'patch-user_email_token.sql' ),
69         array( 'add_field', 'archive',       'ar_text_id',       'patch-archive-text_id.sql' ),
70         array( 'do_namespace_size' ),
71         array( 'add_field', 'image',         'img_media_type',   'patch-img_media_type.sql' ),
72         array( 'do_pagelinks_update' ),
73         array( 'do_drop_img_type' ),
74         array( 'do_user_unique_update' ),
75         array( 'do_user_groups_update' ),
76         array( 'add_field', 'site_stats',    'ss_total_pages',   'patch-ss_total_articles.sql' ),
77         array( 'add_table', 'user_newtalk',                      'patch-usernewtalk2.sql' ),
78         array( 'add_table', 'transcache',                        'patch-transcache.sql' ),
79         array( 'add_field', 'interwiki',     'iw_trans',         'patch-interwiki-trans.sql' ),
80         array( 'add_table', 'trackbacks',                        'patch-trackbacks.sql' ),
81         
82         // 1.6
83         array( 'do_watchlist_null' ),
84         // do_image_index_update obsolete
85         array( 'do_logging_timestamp_index' ),
86         array( 'add_field', 'ipblocks',        'ipb_range_start',  'patch-ipb_range_start.sql' ),
87         array( 'do_page_random_update' ),
88         array( 'add_field', 'user',            'user_registration','patch-user_registration.sql' ),
89         array( 'do_templatelinks_update' ),
90         array( 'add_table', 'externallinks',                       'patch-externallinks.sql' ),
91         array( 'add_table', 'job',                                 'patch-job.sql' ),
92         array( 'add_field', 'site_stats',      'ss_images',        'patch-ss_images.sql' ),
93         array( 'add_table', 'langlinks',                           'patch-langlinks.sql' ),
94         array( 'add_table', 'querycache_info',                     'patch-querycacheinfo.sql' ),
95         array( 'add_table', 'filearchive',                         'patch-filearchive.sql' ),
96         array( 'add_field', 'ipblocks',        'ipb_anon_only',    'patch-ipb_anon_only.sql' ),
97         array( 'do_rc_indices_update' ),
98         
99         // 1.9
100         array( 'add_field', 'user',          'user_newpass_time', 'patch-user_newpass_time.sql' ),
101         array( 'add_table', 'redirect',                           'patch-redirect.sql' ),
102         array( 'add_table', 'querycachetwo', 'patch-querycachetwo.sql' ),
103         array( 'add_field', 'ipblocks',      'ipb_enable_autoblock', 'patch-ipb_optional_autoblock.sql' ),
104         array( 'do_backlinking_indices_update' ),
105         array( 'add_field', 'recentchanges', 'rc_old_len',        'patch-rc_len.sql' ),
106         array( 'add_field', 'user',          'user_editcount',    'patch-user_editcount.sql' ),
107         
108         // 1.10
109         array( 'do_restrictions_update' ),
110         array( 'add_field', 'logging',       'log_id',           'patch-log_id.sql' ),
111         array( 'add_field', 'revision',      'rev_parent_id',    'patch-rev_parent_id.sql' ),
112         array( 'add_field', 'page_restrictions', 'pr_id',        'patch-page_restrictions_sortkey.sql' ),
113         array( 'add_field', 'revision',      'rev_len',          'patch-rev_len.sql' ),
114         array( 'add_field', 'recentchanges', 'rc_deleted',       'patch-rc_deleted.sql' ),
115         array( 'add_field', 'logging',       'log_deleted',      'patch-log_deleted.sql' ),
116         array( 'add_field', 'archive',       'ar_deleted',       'patch-ar_deleted.sql' ),
117         array( 'add_field', 'ipblocks',      'ipb_deleted',      'patch-ipb_deleted.sql' ),
118         array( 'add_field', 'filearchive',   'fa_deleted',       'patch-fa_deleted.sql' ),
119         array( 'add_field', 'archive',       'ar_len',           'patch-ar_len.sql' ),
120         
121         // 1.11
122         array( 'add_field', 'ipblocks',      'ipb_block_email',  'patch-ipb_emailban.sql' ),
123         array( 'do_categorylinks_indices_update' ),
124         array( 'add_field', 'oldimage',      'oi_metadata',      'patch-oi_metadata.sql'),
125         array( 'do_archive_user_index' ),
126         array( 'do_image_user_index' ),
127         array( 'do_oldimage_user_index' ),
128         array( 'add_field', 'archive',       'ar_page_id',       'patch-archive-page_id.sql'),
129         array( 'add_field', 'image',         'img_sha1',         'patch-img_sha1.sql' ),
131         // 1.12
132         array( 'add_table', 'protected_titles',                  'patch-protected_titles.sql' ),
133         
134         // 1.13
135         array( 'add_field', 'ipblocks',      'ipb_by_text',      'patch-ipb_by_text.sql' ),
136         array( 'add_table', 'page_props',                        'patch-page_props.sql' ),
137         array( 'add_table', 'updatelog',                         'patch-updatelog.sql' ),
138         array( 'add_table', 'category',                          'patch-category.sql' ),
139         array( 'do_category_population' ),
140         array( 'add_field', 'archive',       'ar_parent_id',     'patch-ar_parent_id.sql'),
141         array( 'add_field', 'user_newtalk',  'user_last_timestamp', 'patch-user_last_timestamp.sql'),
142         array( 'do_populate_parent_id' ),
143         array( 'check_bin', 'protected_titles', 'pt_title',      'patch-pt_title-encoding.sql', ),
144         array( 'maybe_do_profiling_memory_update' ),
145         array( 'do_filearchive_indices_update' ),
149 # For extensions only, should be populated via hooks
150 # $wgDBtype should be checked to specifiy the proper file
151 $wgExtNewTables = array(); // table, dir
152 $wgExtNewFields = array(); // table, column, dir
153 $wgExtPGNewFields = array(); // table, column attributes; for PostgreSQL
154 $wgExtNewIndexes = array(); // table, index, dir
156 # Helper function: check if the given key is present in the updatelog table.
157 # Obviously, only use this for updates that occur after the updatelog table was
158 # created!
159 function update_row_exists( $key ) {
160         $dbr = wfGetDB( DB_SLAVE );
161         $row = $dbr->selectRow(
162                 'updatelog',
163                 '1',
164                 array( 'ul_key' => $key ),
165                 __FUNCTION__
166         );
167         return (bool)$row;
170 function rename_table( $from, $to, $patch ) {
171         global $wgDatabase;
172         if ( $wgDatabase->tableExists( $from ) ) {
173                 if ( $wgDatabase->tableExists( $to ) ) {
174                         echo "...can't move table $from to $to, $to already exists.\n";
175                 } else {
176                         echo "Moving table $from to $to...";
177                         dbsource( archive($patch), $wgDatabase );
178                         echo "ok\n";
179                 }
180         } else {
181                 // Source table does not exist
182                 // Renames are done before creations, so this is typical for a new installation
183                 // Ignore silently
184         }
187 function add_table( $name, $patch, $fullpath=false ) {
188         global $wgDatabase;
189         if ( $wgDatabase->tableExists( $name ) ) {
190                 echo "...$name table already exists.\n";
191         } else {
192                 echo "Creating $name table...";
193                 if( $fullpath ) {
194                         dbsource( $patch, $wgDatabase );
195                 } else {
196                         dbsource( archive($patch), $wgDatabase );
197                 }
198                 echo "ok\n";
199         }
202 function add_field( $table, $field, $patch, $fullpath=false ) {
203         global $wgDatabase;
204         if ( !$wgDatabase->tableExists( $table ) ) {
205                 echo "...$table table does not exist, skipping new field patch\n";
206         } elseif ( $wgDatabase->fieldExists( $table, $field ) ) {
207                 echo "...have $field field in $table table.\n";
208         } else {
209                 echo "Adding $field field to table $table...";
210                 if( $fullpath ) {
211                         dbsource( $patch, $wgDatabase );
212                 } else {
213                         dbsource( archive($patch), $wgDatabase );
214                 }
215                 echo "ok\n";
216         }
219 function add_index( $table, $index, $patch, $fullpath=false ) {
220         global $wgDatabase;
221         if( $wgDatabase->indexExists( $table, $index ) ) {
222                 echo "...$index key already set on $table table.\n";
223         } else {
224                 echo "Adding $index key to table $table... ";
225                 if( $fullpath ) {
226                         dbsource( $patch, $wgDatabase );
227                 } else {
228                         dbsource( archive($patch), $wgDatabase );
229                 }
230                 echo "ok\n";
231         }
234 function do_revision_updates() {
235         global $wgSoftwareRevision;
236         if ( $wgSoftwareRevision < 1001 ) {
237                 update_passwords();
238         }
241 function update_passwords() {
242         wfDebugDieBacktrace( "This function needs to be updated or removed.\n" );
244         global $wgDatabase;
245         $fname = "Update script: update_passwords()";
246         print "\nIt appears that you need to update the user passwords in your\n" .
247           "database. If you have already done this (if you've run this update\n" .
248           "script once before, for example), doing so again will make all your\n" .
249           "user accounts inaccessible, so be sure you only do this once.\n" .
250           "Update user passwords? (yes/no)";
252         $resp = readconsole();
253     if ( ! ( "Y" == $resp{0} || "y" == $resp{0} ) ) { return; }
255         $sql = "SELECT user_id,user_password FROM user";
256         $source = $wgDatabase->query( $sql, $fname );
258         while ( $row = $wgDatabase->fetchObject( $source ) ) {
259                 $id = $row->user_id;
260                 $oldpass = $row->user_password;
261                 $newpass = md5( "{$id}-{$oldpass}" );
263                 $sql = "UPDATE user SET user_password='{$newpass}' " .
264                   "WHERE user_id={$id}";
265                 $wgDatabase->query( $sql, $fname );
266         }
269 function do_interwiki_update() {
270         # Check that interwiki table exists; if it doesn't source it
271         global $wgDatabase, $IP;
272         if( $wgDatabase->tableExists( "interwiki" ) ) {
273                 echo "...already have interwiki table\n";
274                 return true;
275         }
276         echo "Creating interwiki table: ";
277         dbsource( archive("patch-interwiki.sql") );
278         echo "ok\n";
279         echo "Adding default interwiki definitions: ";
280         dbsource( "$IP/maintenance/interwiki.sql" );
281         echo "ok\n";
284 function do_index_update() {
285         # Check that proper indexes are in place
286         global $wgDatabase;
287         $meta = $wgDatabase->fieldInfo( "recentchanges", "rc_timestamp" );
288         if( !$meta->isMultipleKey() ) {
289                 echo "Updating indexes to 20031107: ";
290                 dbsource( archive("patch-indexes.sql") );
291                 echo "ok\n";
292                 return true;
293         }
294         echo "...indexes seem up to 20031107 standards\n";
295         return false;
298 function do_image_index_update() {
299         global $wgDatabase;
301         $meta = $wgDatabase->fieldInfo( "image", "img_major_mime" );
302         if( !$meta->isMultipleKey() ) {
303                 echo "Updating indexes to 20050912: ";
304                 dbsource( archive("patch-mimesearch-indexes.sql") );
305                 echo "ok\n";
306                 return true;
307         }
308         echo "...indexes seem up to 20050912 standards\n";
309         return false;
312 function do_image_name_unique_update() {
313         global $wgDatabase;
314         if( $wgDatabase->indexExists( 'image', 'PRIMARY' ) ) {
315                 echo "...image primary key already set.\n";
316         } else {
317                 echo "Making img_name the primary key... ";
318                 dbsource( archive("patch-image_name_primary.sql"), $wgDatabase );
319                 echo "ok\n";
320         }
323 function do_logging_timestamp_index() {
324         global $wgDatabase;
325         if( $wgDatabase->indexExists( 'logging', 'times' ) ) {
326                 echo "...timestamp key on logging already exists.\n";
327         } else {
328                 echo "Adding timestamp key on logging table... ";
329                 dbsource( archive("patch-logging-times-index.sql"), $wgDatabase );
330                 echo "ok\n";
331         }
334 function do_archive_user_index() {
335         global $wgDatabase;
336         if( $wgDatabase->indexExists( 'archive', 'usertext_timestamp' ) ) {
337                 echo "...usertext,timestamp key on archive already exists.\n";
338         } else {
339                 echo "Adding usertext,timestamp key on archive table... ";
340                 dbsource( archive("patch-archive-user-index.sql"), $wgDatabase );
341                 echo "ok\n";
342         }
345 function do_image_user_index() {
346         global $wgDatabase;
347         if( $wgDatabase->indexExists( 'image', 'img_usertext_timestamp' ) ) {
348                 echo "...usertext,timestamp key on image already exists.\n";
349         } else {
350                 echo "Adding usertext,timestamp key on image table... ";
351                 dbsource( archive("patch-image-user-index.sql"), $wgDatabase );
352                 echo "ok\n";
353         }
356 function do_oldimage_user_index() {
357         global $wgDatabase;
358         if( $wgDatabase->indexExists( 'oldimage', 'oi_usertext_timestamp' ) ) {
359                 echo "...usertext,timestamp key on oldimage already exists.\n";
360         } else {
361                 echo "Adding usertext,timestamp key on oldimage table... ";
362                 dbsource( archive("patch-oldimage-user-index.sql"), $wgDatabase );
363                 echo "ok\n";
364         }
367 function do_watchlist_update() {
368         global $wgDatabase;
369         $fname = 'do_watchlist_update';
370         if( $wgDatabase->fieldExists( 'watchlist', 'wl_notificationtimestamp' ) ) {
371                 echo "The watchlist table is already set up for email notification.\n";
372         } else {
373                 echo "Adding wl_notificationtimestamp field for email notification management.";
374                 /* ALTER TABLE watchlist ADD (wl_notificationtimestamp varchar(14) binary NOT NULL default '0'); */
375                 dbsource( archive( 'patch-email-notification.sql' ), $wgDatabase );
376                 echo "ok\n";
377         }
378         # Check if we need to add talk page rows to the watchlist
379         $talk = $wgDatabase->selectField( 'watchlist', 'count(*)', 'wl_namespace & 1', $fname );
380         $nontalk = $wgDatabase->selectField( 'watchlist', 'count(*)', 'NOT (wl_namespace & 1)', $fname );
381         if ( $talk != $nontalk ) {
382                 echo "Adding missing watchlist talk page rows... ";
383                 flush();
385                 $wgDatabase->insertSelect( 'watchlist', 'watchlist', 
386                         array(
387                                 'wl_user' => 'wl_user',
388                                 'wl_namespace' => 'wl_namespace | 1',
389                                 'wl_title' => 'wl_title',
390                                 'wl_notificationtimestamp' => 'wl_notificationtimestamp'
391                         ), array( 'NOT (wl_namespace & 1)' ), $fname, 'IGNORE' );
392                 echo "ok\n";
393         } else {
394                 echo "...watchlist talk page rows already present\n";
395         }
398 function do_copy_newtalk_to_watchlist() {
399         global $wgDatabase;
400         global $wgCommandLineMode;      # this needs to be saved while getID() and getName() are called
402         $res = $wgDatabase->safeQuery( 'SELECT user_id, user_ip FROM !',
403                 $wgDatabase->tableName( 'user_newtalk' ) );
404         $num_newtalks=$wgDatabase->numRows($res);
405         echo "Now converting ".$num_newtalks." user_newtalk entries to watchlist table entries ... \n";
407         $user = new User();
408         for ( $i = 1; $i <= $num_newtalks; $i++ ) {
409                 $wluser = $wgDatabase->fetchObject( $res );
410                 if ($wluser->user_id == 0) { # anonymous users ... have IP numbers as "names"
411                         if ($user->isIP($wluser->user_ip)) { # do only if it really looks like an IP number (double checked)
412                                 $wgDatabase->replace( 'watchlist',
413                                         array(array('wl_user','wl_namespace', 'wl_title', 'wl_notificationtimestamp' )),
414                                           array('wl_user'                       => 0,
415                                                 'wl_namespace'                  => NS_USER_TALK,
416                                                 'wl_title'                      => $wluser->user_ip,
417                                                 'wl_notificationtimestamp'      => '19700101000000'
418                                                 ), 'updaters.inc::do_watchlist_update2'
419                                         );
420                         }
421                 } else { # normal users ... have user_ids
422                         $user->setID($wluser->user_id);
423                         $wgDatabase->replace( 'watchlist',
424                                 array(array('wl_user','wl_namespace', 'wl_title', 'wl_notificationtimestamp' )),
425                                   array('wl_user'                       => $user->getID(),
426                                         'wl_namespace'                  => NS_USER_TALK,
427                                         'wl_title'                      => $user->getName(),
428                                         'wl_notificationtimestamp'      => '19700101000000'
429                                         ), 'updaters.inc::do_watchlist_update3'
430                                 );
431                 }
432         }
433         echo "Done.\n";
437 function do_user_update() {
438         global $wgDatabase;
439         if( $wgDatabase->fieldExists( 'user', 'user_emailauthenticationtimestamp' ) ) {
440                 echo "User table contains old email authentication field. Dropping... ";
441                 dbsource( archive( 'patch-email-authentication.sql' ), $wgDatabase );
442                 echo "ok\n";
443         } else {
444                 echo "...user table does not contain old email authentication field.\n";
445         }
449  * 1.4 betas were missing the 'binary' marker from logging.log_title,
450  * which causes a collation mismatch error on joins in MySQL 4.1.
451  */
452 function check_bin( $table, $field, $patchFile ) {
453         global $wgDatabase, $wgDBtype;
454         if ($wgDBtype != 'mysql')
455                 return;
456         $tableName = $wgDatabase->tableName( $table );
457         $res = $wgDatabase->query( "SELECT $field FROM $tableName LIMIT 0" );
458         $flags = explode( ' ', mysql_field_flags( $res->result, 0 ) );
459         $wgDatabase->freeResult( $res );
461         if( in_array( 'binary', $flags ) ) {
462                 echo "$table table has correct $field encoding.\n";
463         } else {
464                 echo "Fixing $field encoding on $table table... ";
465                 dbsource( archive( $patchFile ), $wgDatabase );
466                 echo "ok\n";
467         }
470 function do_schema_restructuring() {
471         global $wgDatabase;
472         $fname="do_schema_restructuring";
473         if ( $wgDatabase->tableExists( 'page' ) ) {
474                 echo "...page table already exists.\n";
475         } else {
476                 echo "...converting from cur/old to page/revision/text DB structure.\n"; flush();
477                 echo wfTimestamp( TS_DB );
478                 echo "......checking for duplicate entries.\n"; flush();
480                 list ($cur, $old, $page, $revision, $text) = $wgDatabase->tableNamesN( 'cur', 'old', 'page', 'revision', 'text' );
482                 $rows = $wgDatabase->query( "SELECT cur_title, cur_namespace, COUNT(cur_namespace) AS c
483                                 FROM $cur GROUP BY cur_title, cur_namespace HAVING c>1", $fname );
485                 if ( $wgDatabase->numRows( $rows ) > 0 ) {
486                         echo wfTimestamp( TS_DB );
487                         echo "......<b>Found duplicate entries</b>\n";
488                         echo ( sprintf( "<b>      %-60s %3s %5s</b>\n", 'Title', 'NS', 'Count' ) );
489                         while ( $row = $wgDatabase->fetchObject( $rows ) ) {
490                                 if ( ! isset( $duplicate[$row->cur_namespace] ) ) {
491                                         $duplicate[$row->cur_namespace] = array();
492                                 }
493                                 $duplicate[$row->cur_namespace][] = $row->cur_title;
494                                 echo ( sprintf( "      %-60s %3s %5s\n", $row->cur_title, $row->cur_namespace, $row->c ) );
495                         }
496                         $sql = "SELECT cur_title, cur_namespace, cur_id, cur_timestamp FROM $cur WHERE ";
497                         $firstCond = true;
498                         foreach ( $duplicate as $ns => $titles ) {
499                                 if ( $firstCond ) {
500                                         $firstCond = false;
501                                 } else {
502                                         $sql .= ' OR ';
503                                 }
504                                 $sql .= "( cur_namespace = {$ns} AND cur_title in (";
505                                 $first = true;
506                                 foreach ( $titles as $t ) {
507                                         if ( $first ) {
508                                                 $sql .= $wgDatabase->addQuotes( $t );
509                                                 $first = false;
510                                         } else {
511                                                 $sql .= ', ' . $wgDatabase->addQuotes( $t );
512                                         }
513                                 }
514                                 $sql .= ") ) \n";
515                         }
516                         # By sorting descending, the most recent entry will be the first in the list.
517                         # All following entries will be deleted by the next while-loop.
518                         $sql .= 'ORDER BY cur_namespace, cur_title, cur_timestamp DESC';
520                         $rows = $wgDatabase->query( $sql, $fname );
522                         $prev_title = $prev_namespace = false;
523                         $deleteId = array();
525                         while ( $row = $wgDatabase->fetchObject( $rows ) ) {
526                                 if ( $prev_title == $row->cur_title && $prev_namespace == $row->cur_namespace ) {
527                                         $deleteId[] = $row->cur_id;
528                                 }
529                                 $prev_title     = $row->cur_title;
530                                 $prev_namespace = $row->cur_namespace;
531                         }
532                         $sql = "DELETE FROM $cur WHERE cur_id IN ( " . join( ',', $deleteId ) . ')';
533                         $rows = $wgDatabase->query( $sql, $fname );
534                         echo wfTimestamp( TS_DB );
535                         echo "......<b>Deleted</b> ".$wgDatabase->affectedRows()." records.\n";
536                 }
539                 echo wfTimestamp( TS_DB );
540                 echo "......Creating tables.\n";
541                 $wgDatabase->query("CREATE TABLE $page (
542                         page_id int(8) unsigned NOT NULL auto_increment,
543                         page_namespace int NOT NULL,
544                         page_title varchar(255) binary NOT NULL,
545                         page_restrictions tinyblob NOT NULL,
546                         page_counter bigint(20) unsigned NOT NULL default '0',
547                         page_is_redirect tinyint(1) unsigned NOT NULL default '0',
548                         page_is_new tinyint(1) unsigned NOT NULL default '0',
549                         page_random real unsigned NOT NULL,
550                         page_touched char(14) binary NOT NULL default '',
551                         page_latest int(8) unsigned NOT NULL,
552                         page_len int(8) unsigned NOT NULL,
554                         PRIMARY KEY page_id (page_id),
555                         UNIQUE INDEX name_title (page_namespace,page_title),
556                         INDEX (page_random),
557                         INDEX (page_len)
558                         ) TYPE=InnoDB", $fname );
559                 $wgDatabase->query("CREATE TABLE $revision (
560                         rev_id int(8) unsigned NOT NULL auto_increment,
561                         rev_page int(8) unsigned NOT NULL,
562                         rev_comment tinyblob NOT NULL,
563                         rev_user int(5) unsigned NOT NULL default '0',
564                         rev_user_text varchar(255) binary NOT NULL default '',
565                         rev_timestamp char(14) binary NOT NULL default '',
566                         rev_minor_edit tinyint(1) unsigned NOT NULL default '0',
567                         rev_deleted tinyint(1) unsigned NOT NULL default '0',
568                         rev_len int(8) unsigned,
569                         rev_parent_id int(8) unsigned default NULL,
570                         PRIMARY KEY rev_page_id (rev_page, rev_id),
571                         UNIQUE INDEX rev_id (rev_id),
572                         INDEX rev_timestamp (rev_timestamp),
573                         INDEX page_timestamp (rev_page,rev_timestamp),
574                         INDEX user_timestamp (rev_user,rev_timestamp),
575                         INDEX usertext_timestamp (rev_user_text,rev_timestamp)
576                         ) TYPE=InnoDB", $fname );
578                 echo wfTimestamp( TS_DB );
579                 echo "......Locking tables.\n";
580                 $wgDatabase->query( "LOCK TABLES $page WRITE, $revision WRITE, $old WRITE, $cur WRITE", $fname );
582                 $maxold = intval( $wgDatabase->selectField( 'old', 'max(old_id)', '', $fname ) );
583                 echo wfTimestamp( TS_DB );
584                 echo "......maxold is {$maxold}\n";
586                 echo wfTimestamp( TS_DB );
587                 global $wgLegacySchemaConversion;
588                 if( $wgLegacySchemaConversion ) {
589                         // Create HistoryBlobCurStub entries.
590                         // Text will be pulled from the leftover 'cur' table at runtime.
591                         echo "......Moving metadata from cur; using blob references to text in cur table.\n";
592                         $cur_text = "concat('O:18:\"historyblobcurstub\":1:{s:6:\"mCurId\";i:',cur_id,';}')";
593                         $cur_flags = "'object'";
594                 } else {
595                         // Copy all cur text in immediately: this may take longer but avoids
596                         // having to keep an extra table around.
597                         echo "......Moving text from cur.\n";
598                         $cur_text = 'cur_text';
599                         $cur_flags = "''";
600                 }
601                 $wgDatabase->query( "INSERT INTO $old (old_namespace, old_title, old_text, old_comment, old_user, old_user_text,
602                                 old_timestamp, old_minor_edit, old_flags)
603                         SELECT cur_namespace, cur_title, $cur_text, cur_comment, cur_user, cur_user_text, cur_timestamp, cur_minor_edit, $cur_flags
604                         FROM $cur", $fname );
606                 echo wfTimestamp( TS_DB );
607                 echo "......Setting up revision table.\n";
608                 $wgDatabase->query( "INSERT INTO $revision (rev_id, rev_page, rev_comment, rev_user, rev_user_text, rev_timestamp,
609                                 rev_minor_edit)
610                         SELECT old_id, cur_id, old_comment, old_user, old_user_text,
611                                 old_timestamp, old_minor_edit
612                         FROM $old,$cur WHERE old_namespace=cur_namespace AND old_title=cur_title", $fname );
614                 echo wfTimestamp( TS_DB );
615                 echo "......Setting up page table.\n";
616                 $wgDatabase->query( "INSERT INTO $page (page_id, page_namespace, page_title, page_restrictions, page_counter,
617                                 page_is_redirect, page_is_new, page_random, page_touched, page_latest, page_len)
618                         SELECT cur_id, cur_namespace, cur_title, cur_restrictions, cur_counter, cur_is_redirect, cur_is_new,
619                                 cur_random, cur_touched, rev_id, LENGTH(cur_text)
620                         FROM $cur,$revision
621                         WHERE cur_id=rev_page AND rev_timestamp=cur_timestamp AND rev_id > {$maxold}", $fname );
623                 echo wfTimestamp( TS_DB );
624                 echo "......Unlocking tables.\n";
625                 $wgDatabase->query( "UNLOCK TABLES", $fname );
627                 echo wfTimestamp( TS_DB );
628                 echo "......Renaming old.\n";
629                 $wgDatabase->query( "ALTER TABLE $old RENAME TO $text", $fname );
631                 echo wfTimestamp( TS_DB );
632                 echo "...done.\n";
633         }
636 function do_inverse_timestamp() {
637         global $wgDatabase;
638         if( $wgDatabase->fieldExists( 'revision', 'inverse_timestamp' ) ) {
639                 echo "Removing revision.inverse_timestamp and fixing indexes... ";
640                 dbsource( archive( 'patch-inverse_timestamp.sql' ), $wgDatabase );
641                 echo "ok\n";
642         } else {
643                 echo "revision timestamp indexes already up to 2005-03-13\n";
644         }
647 function do_text_id() {
648         global $wgDatabase;
649         if( $wgDatabase->fieldExists( 'revision', 'rev_text_id' ) ) {
650                 echo "...rev_text_id already in place.\n";
651         } else {
652                 echo "Adding rev_text_id field... ";
653                 dbsource( archive( 'patch-rev_text_id.sql' ), $wgDatabase );
654                 echo "ok\n";
655         }
658 function do_namespace_size() {
659         $tables = array(
660                 'page'          => 'page',
661                 'archive'       => 'ar',
662                 'recentchanges' => 'rc',
663                 'watchlist'     => 'wl',
664                 'querycache'    => 'qc',
665                 'logging'       => 'log',
666         );
667         foreach( $tables as $table => $prefix ) {
668                 do_namespace_size_on( $table, $prefix );
669                 flush();
670         }
673 function do_namespace_size_on( $table, $prefix ) {
674         global $wgDatabase, $wgDBtype;
675         if ($wgDBtype != 'mysql')
676                 return;
677         $field = $prefix . '_namespace';
679         $tablename = $wgDatabase->tableName( $table );
680         $result = $wgDatabase->query( "SHOW COLUMNS FROM $tablename LIKE '$field'" );
681         $info = $wgDatabase->fetchObject( $result );
682         $wgDatabase->freeResult( $result );
684         if( substr( $info->Type, 0, 3 ) == 'int' ) {
685                 echo "...$field is already a full int ($info->Type).\n";
686         } else {
687                 echo "Promoting $field from $info->Type to int... ";
689                 $sql = "ALTER TABLE $tablename MODIFY $field int NOT NULL";
690                 $wgDatabase->query( $sql );
692                 echo "ok\n";
693         }
696 function do_pagelinks_update() {
697         global $wgDatabase;
698         if( $wgDatabase->tableExists( 'pagelinks' ) ) {
699                 echo "...already have pagelinks table.\n";
700         } else {
701                 echo "Converting links and brokenlinks tables to pagelinks... ";
702                 dbsource( archive( 'patch-pagelinks.sql' ), $wgDatabase );
703                 echo "ok\n";
704                 flush();
706                 global $wgCanonicalNamespaceNames;
707                 foreach( $wgCanonicalNamespaceNames as $ns => $name ) {
708                         if( $ns != 0 ) {
709                                 do_pagelinks_namespace( $ns );
710                         }
711                 }
712         }
715 function do_pagelinks_namespace( $namespace ) {
716         global $wgDatabase, $wgContLang;
718         $ns = intval( $namespace );
719         echo "Cleaning up broken links for namespace $ns... ";
721         $pagelinks = $wgDatabase->tableName( 'pagelinks' );
722         $name = $wgContLang->getNsText( $ns );
723         $prefix = $wgDatabase->strencode( $name );
724         $likeprefix = str_replace( '_', '\\_', $prefix);
726         $sql = "UPDATE $pagelinks
727                    SET pl_namespace=$ns,
728                        pl_title=TRIM(LEADING '$prefix:' FROM pl_title)
729                  WHERE pl_namespace=0
730                    AND pl_title LIKE '$likeprefix:%'";
732         $wgDatabase->query( $sql, 'do_pagelinks_namespace' );
733         echo "ok\n";
736 function do_drop_img_type() {
737         global $wgDatabase;
739         if( $wgDatabase->fieldExists( 'image', 'img_type' ) ) {
740                 echo "Dropping unused img_type field in image table... ";
741                 dbsource( archive( 'patch-drop_img_type.sql' ), $wgDatabase );
742                 echo "ok\n";
743         } else {
744                 echo "No img_type field in image table; Good.\n";
745         }
748 function do_old_links_update() {
749         global $wgDatabase;
750         if( $wgDatabase->tableExists( 'pagelinks' ) ) {
751                 echo "Already have pagelinks; skipping old links table updates.\n";
752         } else {
753                 convertLinks(); flush();
754         }
757 function do_user_unique_update() {
758         global $wgDatabase;
759         $duper = new UserDupes( $wgDatabase );
760         if( $duper->hasUniqueIndex() ) {
761                 echo "Already have unique user_name index.\n";
762         } else {
763                 if( !$duper->clearDupes() ) {
764                         echo "WARNING: This next step will probably fail due to unfixed duplicates...\n";
765                 }
766                 echo "Adding unique index on user_name... ";
767                 dbsource( archive( 'patch-user_nameindex.sql' ), $wgDatabase );
768                 echo "ok\n";
769         }
772 function do_user_groups_update() {
773         $fname = 'do_user_groups_update';
774         global $wgDatabase;
776         if( $wgDatabase->tableExists( 'user_groups' ) ) {
777                 echo "...user_groups table already exists.\n";
778                 return do_user_groups_reformat();
779         }
781         echo "Adding user_groups table... ";
782         dbsource( archive( 'patch-user_groups.sql' ), $wgDatabase );
783         echo "ok\n";
785         if( !$wgDatabase->tableExists( 'user_rights' ) ) {
786                 if( $wgDatabase->fieldExists( 'user', 'user_rights' ) ) {
787                         echo "Upgrading from a 1.3 or older database? Breaking out user_rights for conversion...";
788                         dbsource( archive( 'patch-user_rights.sql' ), $wgDatabase );
789                         echo "ok\n";
790                 } else {
791                         echo "*** WARNING: couldn't locate user_rights table or field for upgrade.\n";
792                         echo "*** You may need to manually configure some sysops by manipulating\n";
793                         echo "*** the user_groups table.\n";
794                         return;
795                 }
796         }
798         echo "Converting user_rights table to user_groups... ";
799         $result = $wgDatabase->select( 'user_rights',
800                 array( 'ur_user', 'ur_rights' ),
801                 array( "ur_rights != ''" ),
802                 $fname );
804         while( $row = $wgDatabase->fetchObject( $result ) ) {
805                 $groups = array_unique(
806                         array_map( 'trim',
807                                 explode( ',', $row->ur_rights ) ) );
809                 foreach( $groups as $group ) {
810                         $wgDatabase->insert( 'user_groups',
811                                 array(
812                                         'ug_user'  => $row->ur_user,
813                                         'ug_group' => $group ),
814                                 $fname );
815                 }
816         }
817         $wgDatabase->freeResult( $result );
818         echo "ok\n";
821 function do_user_groups_reformat() {
822         # Check for bogus formats from previous 1.5 alpha code.
823         global $wgDatabase;
824         $info = $wgDatabase->fieldInfo( 'user_groups', 'ug_group' );
826         if( $info->type() == 'int' ) {
827                 $oldug = $wgDatabase->tableName( 'user_groups' );
828                 $newug = $wgDatabase->tableName( 'user_groups_bogus' );
829                 echo "user_groups is in bogus intermediate format. Renaming to $newug... ";
830                 $wgDatabase->query( "ALTER TABLE $oldug RENAME TO $newug" );
831                 echo "ok\n";
833                 echo "Re-adding fresh user_groups table... ";
834                 dbsource( archive( 'patch-user_groups.sql' ), $wgDatabase );
835                 echo "ok\n";
837                 echo "***\n";
838                 echo "*** WARNING: You will need to manually fix up user permissions in the user_groups\n";
839                 echo "*** table. Old 1.5 alpha versions did some pretty funky stuff...\n";
840                 echo "***\n";
841         } else {
842                 echo "...user_groups is in current format.\n";
843         }
847 function do_watchlist_null() {
848         # Make sure wl_notificationtimestamp can be NULL,
849         # and update old broken items.
850         global $wgDatabase;
851         $info = $wgDatabase->fieldInfo( 'watchlist', 'wl_notificationtimestamp' );
853         if( !$info->nullable() ) {
854                 echo "Making wl_notificationtimestamp nullable... ";
855                 dbsource( archive( 'patch-watchlist-null.sql' ), $wgDatabase );
856                 echo "ok\n";
857         } else {
858                 echo "...wl_notificationtimestamp is already nullable.\n";
859         }
864  * @bug 3946
865  */
866 function do_page_random_update() {
867         global $wgDatabase;
869         echo "Setting page_random to a random value on rows where it equals 0...";
871         $page = $wgDatabase->tableName( 'page' );
872         $wgDatabase->query( "UPDATE $page SET page_random = RAND() WHERE page_random = 0", 'do_page_random_update' );
873         $rows = $wgDatabase->affectedRows();
875         echo "changed $rows rows\n";
878 function do_templatelinks_update() {
879         global $wgDatabase, $wgLoadBalancer;
880         $fname = 'do_templatelinks_update';
882         if ( $wgDatabase->tableExists( 'templatelinks' ) ) {
883                 echo "...templatelinks table already exists\n";
884                 return;
885         }
886         echo "Creating templatelinks table...\n";
887         dbsource( archive('patch-templatelinks.sql'), $wgDatabase );
888         echo "Populating...\n";
889         if ( isset( $wgLoadBalancer ) && $wgLoadBalancer->getServerCount() > 1 ) {
890                 // Slow, replication-friendly update
891                 $res = $wgDatabase->select( 'pagelinks', array( 'pl_from', 'pl_namespace', 'pl_title' ),
892                         array( 'pl_namespace' => NS_TEMPLATE ), $fname );
893                 $count = 0;
894                 while ( $row = $wgDatabase->fetchObject( $res ) ) {
895                         $count = ($count + 1) % 100;
896                         if ( $count == 0 ) {
897                                 if ( function_exists( 'wfWaitForSlaves' ) ) {
898                                         wfWaitForSlaves( 10 );
899                                 } else {
900                                         sleep( 1 );
901                                 }
902                         }
903                         $wgDatabase->insert( 'templatelinks',
904                                 array(
905                                         'tl_from' => $row->pl_from,
906                                         'tl_namespace' => $row->pl_namespace,
907                                         'tl_title' => $row->pl_title,
908                                 ), $fname
909                         );
911                 }
912                 $wgDatabase->freeResult( $res );
913         } else {
914                 // Fast update
915                 $wgDatabase->insertSelect( 'templatelinks', 'pagelinks',
916                         array(
917                                 'tl_from' => 'pl_from',
918                                 'tl_namespace' => 'pl_namespace',
919                                 'tl_title' => 'pl_title'
920                         ), array(
921                                 'pl_namespace' => 10
922                         ), $fname
923                 );
924         }
925         echo "Done. Please run maintenance/refreshLinks.php for a more thorough templatelinks update.\n";
928 // Add index on ( rc_namespace, rc_user_text ) [Jul. 2006]
929 // Add index on ( rc_user_text, rc_timestamp ) [Nov. 2006]
930 function do_rc_indices_update() {
931         global $wgDatabase;
932         echo( "Checking for additional recent changes indices...\n" );
934         $indexes = array(
935                 'rc_ns_usertext' => 'patch-recentchanges-utindex.sql',
936                 'rc_user_text' => 'patch-rc_user_text-index.sql',
937         );
938         
939         foreach( $indexes as $index => $patch ) {
940                 $info = $wgDatabase->indexInfo( 'recentchanges', $index, __METHOD__ );
941                 if( !$info ) {
942                         echo( "...index `{$index}` not found; adding..." );
943                         dbsource( archive( $patch ) );
944                         echo( "done.\n" );
945                 } else {
946                         echo( "...index `{$index}` seems ok.\n" );
947                 }
948         }
951 function index_has_field($table, $index, $field) {
952         global $wgDatabase;
953         echo( "Checking if $table index $index includes field $field...\n" );
954         $info = $wgDatabase->indexInfo( $table, $index, __METHOD__ );
955         if( $info ) {
956                 foreach($info as $row) {
957                         if($row->Column_name == $field) {
958                                 echo( "...index $index on table $table seems to be ok\n" );
959                                 return true;
960                         }
961                 }
962         }
963         echo( "...index $index on table $table has no field $field; adding\n" );
964         return false;
967 function do_backlinking_indices_update() {
968         echo( "Checking for backlinking indices...\n" );
969         if (!index_has_field('pagelinks', 'pl_namespace', 'pl_from') ||
970                 !index_has_field('templatelinks', 'tl_namespace', 'tl_from') ||
971                 !index_has_field('imagelinks', 'il_to', 'il_from'))
972         {       
973                 dbsource( archive( 'patch-backlinkindexes.sql' ) );
974                 echo( "...backlinking indices updated\n" );
975         }
978 function do_categorylinks_indices_update() {
979         echo( "Checking for categorylinks indices...\n" );
980         if (!index_has_field('categorylinks', 'cl_sortkey', 'cl_from'))
981         {       
982                 dbsource( archive( 'patch-categorylinksindex.sql' ) );
983                 echo( "...categorylinks indices updated\n" );
984         }
987 function do_filearchive_indices_update() {
988         global $wgDatabase;
989         echo( "Checking filearchive indices...\n" );
990         $info = $wgDatabase->indexInfo( 'filearchive', 'fa_user_timestamp', __METHOD__ );
991         if ( !$info )
992         {       
993                 dbsource( archive( 'patch-filearhive-user-index.sql' ) );
994                 echo( "...filearchive indices updated\n" );
995         }
998 function maybe_do_profiling_memory_update() {
999         global $wgDatabase;
1000         if ( !$wgDatabase->tableExists( 'profiling' ) ) {
1001                 // Simply ignore
1002         } elseif ( $wgDatabase->fieldExists( 'profiling', 'pf_memory' ) ) {
1003                 echo "profiling table has pf_memory field.\n";
1004         } else {
1005                 echo "Adding pf_memory field to table profiling...";
1006                 dbsource( archive( 'patch-profiling-memory.sql' ), $wgDatabase );
1007                 echo "ok\n";
1008         }
1011 function do_stats_init() {
1012         // Sometimes site_stats table is not properly populated.
1013         global $wgDatabase;
1014         echo "Checking site_stats row...";
1015         $row = $wgDatabase->selectRow( 'site_stats', '*', array( 'ss_row_id' => 1 ), __METHOD__ );
1016         if( $row === false ) {
1017                 echo "data is missing! rebuilding...\n";
1018                 
1019                 global $IP;
1020                 require_once "$IP/maintenance/initStats.inc";
1021                 wfInitStats();
1022         } else {
1023                 echo "ok.\n";
1024         }
1027 function purge_cache() {
1028         global $wgDatabase;
1029         # We can't guarantee that the user will be able to use TRUNCATE,
1030         # but we know that DELETE is available to us
1031         echo( "Purging caches..." );
1032         $wgDatabase->delete( 'objectcache', '*', __METHOD__ );
1033         echo( "done.\n" );
1036 function do_all_updates( $shared = false, $purge = true ) {
1037         global $wgNewTables, $wgNewFields, $wgRenamedTables, $wgSharedDB, $wgDatabase, $wgDBtype, $IP;
1039         wfRunHooks('LoadExtensionSchemaUpdates');
1041         $doUser = !$wgSharedDB || $shared;
1043         if ($wgDBtype === 'postgres') {
1044                 do_postgres_updates();
1045                 return;
1046         }
1047         
1048         # Run core updates in sequence...
1049         global $wgMysqlUpdates;
1050         foreach( $wgMysqlUpdates as $params ) {
1051                 $func = array_shift( $params );
1052                 call_user_func_array( $func, $params );
1053                 flush();
1054         }
1055         
1056         /// @fixme clean up this mess too!
1057         global $wgExtNewTables, $wgExtNewFields, $wgExtNewIndexes;
1058         # Add missing extension tables
1059         foreach ( $wgExtNewTables as $tableRecord ) {
1060                 add_table( $tableRecord[0], $tableRecord[1], true );
1061                 flush();
1062         }
1063         # Add missing extension fields
1064         foreach ( $wgExtNewFields as $fieldRecord ) {
1065                 if ( $fieldRecord[0] != 'user' || $doUser ) {
1066                         add_field( $fieldRecord[0], $fieldRecord[1], $fieldRecord[2], true );
1067                 }
1068                 flush();
1069         }
1070         # Add missing extension indexes
1071         foreach ( $wgExtNewIndexes as $fieldRecord ) {
1072                 add_index( $fieldRecord[0], $fieldRecord[1], $fieldRecord[2], true );
1073                 flush();
1074         }
1077         echo "Deleting old default messages (this may take a long time!)..."; flush();
1078         deleteDefaultMessages();
1079         echo "Done\n"; flush();
1080         
1081         do_stats_init(); flush();
1082         
1083         if( $purge ) {
1084                 purge_cache();
1085                 flush();
1086         }
1089 function archive($name) {
1090         global $wgDBtype, $IP;
1091         switch ($wgDBtype) {
1092         case "postgres":
1093                 return "$IP/maintenance/postgres/archives/$name";
1094         default:
1095                 return "$IP/maintenance/archives/$name";
1096         }
1099 function do_restrictions_update() {
1100         # Adding page_restrictions table, obsoleting page.page_restrictions.
1101         #  Migrating old restrictions to new table
1102         # -- Andrew Garrett, January 2007.
1104         global $wgDatabase;
1106         $name = 'page_restrictions';
1107         $patch = 'patch-page_restrictions.sql';
1108         $patch2 = 'patch-page_restrictions_sortkey.sql';
1110         if ( $wgDatabase->tableExists( $name ) ) {
1111                 echo "...$name table already exists.\n";
1112         } else {
1113                 echo "Creating $name table...";
1114                 dbsource( archive($patch), $wgDatabase );
1115                 dbsource( archive($patch2), $wgDatabase );
1116                 echo "ok\n";
1118                 echo "Migrating old restrictions to new table...";
1120                 $res = $wgDatabase->select( 'page', array( 'page_id', 'page_restrictions' ), array("page_restrictions!=''", "page_restrictions!='edit=:move='"), __METHOD__ );
1122                 $count = 0;
1124                 while ($row = $wgDatabase->fetchObject($res) ) {
1125                         $count = ($count + 1) % 100;
1127                         if ($count == 0) {
1128                                 if ( function_exists( 'wfWaitForSlaves' ) ) {
1129                                         wfWaitForSlaves( 10 );
1130                                 } else {
1131                                         sleep( 1 );
1132                                 }
1133                         }
1135                         # Figure out what the restrictions are..
1136                         $id = $row->page_id;
1137                         $flatrestrictions = explode( ':', $row->page_restrictions );
1139                         $restrictions = array ();
1140                         foreach( $flatrestrictions as $restriction ) {
1141                                 $thisrestriction = explode( '=', $restriction, 2 );
1142                                 if( count( $thisrestriction ) == 1 ) {
1143                                         // Compatibility with old protections from before
1144                                         // separate move protection was added.
1145                                         list( $level ) = $thisrestriction;
1146                                         if( $level ) {
1147                                                 $restrictions['edit'] = $level;
1148                                                 $restrictions['move'] = $level;
1149                                         }
1150                                 } else {
1151                                         list( $type, $level ) = $thisrestriction;
1152                                         if( $level ) {
1153                                                 $restrictions[$type] = $level;
1154                                         }
1155                                 }
1157                         $wgDatabase->update( 'page', array ( 'page_restrictions' => ''), array( 'page_id' => $id ), __METHOD__ );
1159                         }
1160                         
1161                         foreach( $restrictions as $type => $level ) {
1162                                 $wgDatabase->insert( 'page_restrictions', array ( 'pr_page' => $id,
1163                                                                                         'pr_type' => $type,
1164                                                                                         'pr_level' => $level,
1165                                                                                         'pr_cascade' => 0,
1166                                                                                         'pr_expiry' => 'infinity' ),
1167                                                                                         __METHOD__ );
1168                         }
1169                 }
1170                 print "ok\n";
1171         }
1174 function do_category_population() {
1175         if( update_row_exists( 'populate category' ) ) {
1176                 echo "...category table already populated.\n";
1177                 return;
1178         }
1179         require_once( 'populateCategory.inc' );
1180         echo "Populating category table, printing progress markers.  ".
1181 "For large databases, you\n".
1182 "may want to hit Ctrl-C and do this manually with maintenance/\n".
1183 "populateCategory.php.\n";
1184         populateCategory( '', 10, 0, true );
1185         echo "Done populating category table.\n";
1188 function do_populate_parent_id() {
1189         if( update_row_exists( 'populate rev_parent_id' ) ) {
1190                 echo "...rev_parent_id column already populated.\n";
1191                 return;
1192         }
1193         require_once( 'populateParentId.inc' );
1194         
1195         global $wgDatabase;
1196         populate_rev_parent_id( $wgDatabase );
1199 function
1200 pg_describe_table($table)
1202 global  $wgDatabase, $wgDBmwschema;
1203         $q = <<<END
1204 SELECT attname, attnum FROM pg_namespace, pg_class, pg_attribute
1205         WHERE pg_class.relnamespace = pg_namespace.oid 
1206           AND attrelid=pg_class.oid AND attnum > 0
1207           AND relname=%s AND nspname=%s
1208 END;
1209         $res = $wgDatabase->query(sprintf($q,
1210                         $wgDatabase->addQuotes($table),
1211                         $wgDatabase->addQuotes($wgDBmwschema)));
1212         if (!$res)
1213                 return null;
1215         $cols = array();
1216         while ($r = $wgDatabase->fetchRow($res)) {
1217                 $cols[] = array(        
1218                                 "name" => $r[0],
1219                                 "ord" => $r[1],
1220                         );
1221         }
1222         return $cols;
1225 function
1226 pg_describe_index($idx)
1228 global  $wgDatabase, $wgDBmwschema;
1230         // first fetch the key (which is a list of columns ords) and
1231         // the table the index applies to (an oid)
1232         $q = <<<END
1233 SELECT indkey, indrelid FROM pg_namespace, pg_class, pg_index
1234         WHERE nspname=%s
1235           AND pg_class.relnamespace = pg_namespace.oid
1236           AND relname=%s
1237           AND indexrelid=pg_class.oid
1238 END;
1239         $res = $wgDatabase->query(sprintf($q,
1240                         $wgDatabase->addQuotes($wgDBmwschema),
1241                         $wgDatabase->addQuotes($idx)));
1242         if (!$res)
1243                 return null;
1244         if (!($r = $wgDatabase->fetchRow($res))) {
1245                 $wgDatabase->freeResult($res);
1246                 return null;
1247         }
1249         $indkey = $r[0];
1250         $relid = intval($r[1]);
1251         $indkeys = explode(" ", $indkey);
1252         $wgDatabase->freeResult($res);
1254         $colnames = array();
1255         foreach ($indkeys as $rid) {
1256                 $query = <<<END
1257 SELECT attname FROM pg_class, pg_attribute
1258         WHERE attrelid=$relid
1259           AND attnum=%d
1260           AND attrelid=pg_class.oid
1261 END;
1262                 $r2 = $wgDatabase->query(sprintf($query, $rid));
1263                 if (!$r2)
1264                         return null;
1265                 if (!($row2 = $wgDatabase->fetchRow($r2))) {
1266                         $wgDatabase->freeResult($r2);
1267                         return null;
1268                 }
1269                 $colnames[] = $row2[0];
1270                 $wgDatabase->freeResult($r2);
1271         }
1273         return $colnames;
1276 function
1277 pg_index_exists($table, $index)
1279 global  $wgDatabase, $wgDBmwschema;
1280         $exists = $wgDatabase->selectField("pg_indexes", "indexname",
1281                         array(  "indexname" => $index,
1282                                 "tablename" => $table,
1283                                 "schemaname" => $wgDBmwschema));
1284         return $exists === $index;
1287 function
1288 pg_fkey_deltype($fkey)
1290 global  $wgDatabase, $wgDBmwschema;
1291         $q = <<<END
1292 SELECT confdeltype FROM pg_constraint, pg_namespace
1293         WHERE connamespace=pg_namespace.oid
1294           AND nspname=%s
1295           AND conname=%s;
1296 END;
1297         $r = $wgDatabase->query(sprintf($q,
1298                 $wgDatabase->addQuotes($wgDBmwschema),
1299                 $wgDatabase->addQuotes($fkey)));
1300         if (!($row = $wgDatabase->fetchRow($r)))
1301                 return null;
1302         return $row[0];
1305 function
1306 pg_rule_def($table, $rule)
1308 global  $wgDatabase, $wgDBmwschema;
1309         $q = <<<END
1310 SELECT definition FROM pg_rules
1311         WHERE schemaname = %s
1312           AND tablename = %s
1313           AND rulename = %s
1314 END;
1315         $r = $wgDatabase->query(sprintf($q,
1316                         $wgDatabase->addQuotes($wgDBmwschema),
1317                         $wgDatabase->addQuotes($table),
1318                         $wgDatabase->addQuotes($rule)));
1319         $row = $wgDatabase->fetchRow($r);
1320         if (!$row)
1321                 return null;
1322         $d = $row[0];
1323         $wgDatabase->freeResult($r);
1324         return $d;
1327 function do_postgres_updates() {
1328         global $wgDatabase, $wgVersion, $wgDBmwschema, $wgDBts2schema, $wgShowExceptionDetails, $wgDBuser;
1330         ## Gather version numbers in case we need them
1331         $version = $wgDatabase->getServerVersion(); ## long string
1332         $numver = $wgDatabase->numeric_version; ## X.Y e.g. 8.3
1334         $wgShowExceptionDetails = 1;
1336         # Just in case their LocalSettings.php does not have this:
1337         if ( !isset( $wgDBmwschema ))
1338                 $wgDBmwschema = 'mediawiki';
1340         # Verify that this user is configured correctly
1341         $safeuser = $wgDatabase->addQuotes($wgDBuser);
1342         $SQL = "SELECT array_to_string(useconfig,'*') FROM pg_catalog.pg_user WHERE usename = $safeuser";
1343         $config = pg_fetch_result( $wgDatabase->doQuery( $SQL ), 0, 0 );
1344         $conf = array();
1345         foreach( explode( '*', $config ) as $c ) {
1346                 list( $x,$y ) = explode( '=', $c );
1347                 $conf[$x] = $y;
1348         }
1349         if( !array_key_exists( 'search_path', $conf ) ) {
1350                 $search_path = '';
1351         }
1352         else {
1353                 $search_path = $conf['search_path'];
1354         }
1355         if( strpos( $search_path, $wgDBmwschema ) === false ) {
1356                 echo "Adding in schema \"$wgDBmwschema\" to search_path for user \"$wgDBuser\"\n";
1357                 $search_path = "$wgDBmwschema, $search_path";
1358         }
1359         if( strpos( $search_path, $wgDBts2schema ) === false ) {
1360                 echo "Adding in schema \"$wgDBts2schema\" to search_path for user \"$wgDBuser\"\n";
1361                 $search_path = "$search_path, $wgDBts2schema";
1362         }
1363         if( array_key_exists( 'search_path', $conf ) === false || $search_path != $conf['search_path'] ) {
1364                 $wgDatabase->doQuery( "ALTER USER $wgDBuser SET search_path = $search_path" );
1365                 $wgDatabase->doQuery( "SET search_path = $search_path" );
1366         }
1367         else {
1368                 $path = $conf['search_path'];
1369                 echo "... search_path for user \"$wgDBuser\" looks correct ($path)\n";
1370         }
1371         $goodconf = array(
1372                 'client_min_messages' => 'error',
1373                 'DateStyle'           => 'ISO, YMD',
1374                 'TimeZone'            => 'GMT'
1375         );
1376         foreach( array_keys( $goodconf ) AS $key ) {
1377                 $value = $goodconf[$key];
1378                 if( !array_key_exists( $key, $conf ) or $conf[$key] !== $value ) {
1379                         echo "Setting $key to '$value' for user \"$wgDBuser\"\n";
1380                         $wgDatabase->doQuery( "ALTER USER $wgDBuser SET $key = '$value'" );
1381                         $wgDatabase->doQuery( "SET $key = '$value'" );
1382                 }
1383                 else {
1384                         echo "... default value of \"$key\" is correctly set to \"$value\" for user \"$wgDBuser\"\n";
1385                 }
1386         }
1388         $newsequences = array(
1389                 "log_log_id_seq",
1390                 "pr_id_val",
1391         );
1393         $newtables = array(
1394                 array("category",          "patch-category.sql"),
1395                 array("mediawiki_version", "patch-mediawiki_version.sql"),
1396                 array("mwuser",            "patch-mwuser.sql"),
1397                 array("pagecontent",       "patch-pagecontent.sql"),
1398                 array("querycachetwo",     "patch-querycachetwo.sql"),
1399                 array("page_props",        "patch-page_props.sql"),
1400                 array("page_restrictions", "patch-page_restrictions.sql"),
1401                 array("profiling",         "patch-profiling.sql"),
1402                 array("protected_titles",  "patch-protected_titles.sql"),
1403                 array("redirect",          "patch-redirect.sql"),
1404                 array("updatelog",         "patch-updatelog.sql"),
1405         );
1407         $newcols = array(
1408                 array("archive",       "ar_deleted",           "SMALLINT NOT NULL DEFAULT 0"),
1409                 array("archive",       "ar_len",               "INTEGER"),
1410                 array("archive",       "ar_page_id",           "INTEGER"),
1411                 array("archive",       "ar_parent_id",         "INTEGER"),
1412                 array("image",         "img_sha1",             "TEXT NOT NULL DEFAULT ''"),
1413                 array("ipblocks",      "ipb_anon_only",        "CHAR NOT NULL DEFAULT '0'"),
1414                 array("ipblocks",      "ipb_by_text",          "TEXT NOT NULL DEFAULT ''"),
1415                 array("ipblocks",      "ipb_block_email",      "CHAR NOT NULL DEFAULT '0'"),
1416                 array("ipblocks",      "ipb_create_account",   "CHAR NOT NULL DEFAULT '1'"),
1417                 array("ipblocks",      "ipb_deleted",          "SMALLINT NOT NULL DEFAULT 0"),
1418                 array("ipblocks",      "ipb_enable_autoblock", "CHAR NOT NULL DEFAULT '1'"),
1419                 array("filearchive",   "fa_deleted",           "SMALLINT NOT NULL DEFAULT 0"),
1420                 array("logging",       "log_deleted",          "SMALLINT NOT NULL DEFAULT 0"),
1421                 array("logging",       "log_id",               "INTEGER NOT NULL PRIMARY KEY DEFAULT nextval('log_log_id_seq')"),
1422                 array("logging",       "log_params",           "TEXT"),
1423                 array("mwuser",        "user_editcount",       "INTEGER"),
1424                 array("mwuser",        "user_newpass_time",    "TIMESTAMPTZ"),
1425                 array("oldimage",      "oi_deleted",           "SMALLINT NOT NULL DEFAULT 0"),
1426                 array("oldimage",      "oi_metadata",          "BYTEA NOT NULL DEFAULT ''"),
1427                 array("oldimage",      "oi_media_type",        "TEXT"),
1428                 array("oldimage",      "oi_major_mime",        "TEXT NOT NULL DEFAULT 'unknown'"),
1429                 array("oldimage",      "oi_minor_mime",        "TEXT NOT NULL DEFAULT 'unknown'"),
1430                 array("oldimage",      "oi_sha1",              "TEXT NOT NULL DEFAULT ''"),
1431                 array("page_restrictions", "pr_id",            "INTEGER NOT NULL UNIQUE DEFAULT nextval('pr_id_val')"),
1432                 array("profiling",     "pf_memory",            "NUMERIC(18,10) NOT NULL DEFAULT 0"),
1433                 array("recentchanges", "rc_deleted",           "SMALLINT NOT NULL DEFAULT 0"),
1434                 array("recentchanges", "rc_log_action",        "TEXT"),
1435         array("recentchanges", "rc_log_type",          "TEXT"),
1436         array("recentchanges", "rc_logid",             "INTEGER NOT NULL DEFAULT 0"),
1437                 array("recentchanges", "rc_new_len",           "INTEGER"),
1438                 array("recentchanges", "rc_old_len",           "INTEGER"),
1439                 array("recentchanges", "rc_params",            "TEXT"),
1440                 array("revision",      "rev_len",              "INTEGER"),
1441                 array("revision",      "rev_deleted",          "SMALLINT NOT NULL DEFAULT 0"),
1442                 array("user_newtalk",  "user_last_timestamp",  "TIMESTAMPTZ"),
1443         );
1446         # table, column, desired type, USING clause if needed (with new default if needed)
1447         $typechanges = array(
1448                 array("archive",      "ar_deleted",      "smallint", ""),
1449                 array("archive",      "ar_minor_edit",   "smallint", "ar_minor_edit::smallint DEFAULT 0"),
1450                 array("filearchive",  "fa_deleted",      "smallint", ""),
1451                 array("filearchive",  "fa_height",       "integer",  ""),
1452                 array("filearchive",  "fa_metadata",     "bytea",    "decode(fa_metadata,'escape')"),
1453                 array("filearchive",  "fa_size",         "integer",  ""),
1454                 array("filearchive",  "fa_width",        "integer",  ""),
1455                 array("filearchive",  "fa_storage_group","text",     ""),
1456                 array("filearchive",  "fa_storage_key",  "text",     ""),
1457                 array("image",        "img_metadata",    "bytea",    "decode(img_metadata,'escape')"),
1458                 array("image",        "img_size",        "integer",  ""),
1459                 array("image",        "img_width",       "integer",  ""),
1460                 array("image",        "img_height",      "integer",  ""),
1461                 array("interwiki",    "iw_local",        "smallint", "iw_local::smallint DEFAULT 0"),
1462                 array("interwiki",    "iw_trans",        "smallint", "iw_trans::smallint DEFAULT 0"),
1463                 array("ipblocks",     "ipb_auto",        "smallint", "ipb_auto::smallint DEFAULT 0"),
1464                 array("ipblocks",     "ipb_anon_only",   "smallint", "ipb_anon_only::smallint DEFAULT 0"),
1465                 array("ipblocks",     "ipb_create_account", "smallint", "ipb_create_account::smallint DEFAULT 1"),
1466                 array("ipblocks",     "ipb_enable_autoblock", "smallint", "ipb_enable_autoblock::smallint DEFAULT 1"),
1467                 array("ipblocks",     "ipb_block_email", "smallint", "ipb_block_email::smallint DEFAULT 0"),
1468                 array("ipblocks",     "ipb_address",     "text",     "ipb_address::text"),
1469                 array("ipblocks",     "ipb_deleted",     "smallint", "ipb_deleted::smallint"),
1470                 array("math",         "math_inputhash",  "bytea",    "decode(math_inputhash,'escape')"),
1471                 array("math",         "math_outputhash", "bytea",    "decode(math_outputhash,'escape')"),
1472                 array("mwuser",       "user_token",      "text",     ""),
1473                 array("mwuser",       "user_email_token","text",     ""),
1474                 array("objectcache",  "keyname",         "text",     ""),
1475                 array("oldimage",     "oi_height",       "integer",  ""),
1476                 array("oldimage",     "oi_size",         "integer",  ""),
1477                 array("oldimage",     "oi_width",        "integer",  ""),
1478                 array("page",         "page_is_redirect","smallint", "page_is_redirect::smallint DEFAULT 0"),
1479                 array("page",         "page_is_new",     "smallint", "page_is_new::smallint DEFAULT 0"),
1480                 array("querycache",   "qc_value",        "integer",  ""),
1481                 array("querycachetwo","qcc_value",       "integer",  ""),
1482                 array("recentchanges","rc_bot",          "smallint", "rc_bot::smallint DEFAULT 0"),
1483                 array("recentchanges","rc_deleted",      "smallint", ""),
1484                 array("recentchanges","rc_minor",        "smallint", "rc_minor::smallint DEFAULT 0"),
1485                 array("recentchanges","rc_new",          "smallint", "rc_new::smallint DEFAULT 0"),
1486                 array("recentchanges","rc_type",         "smallint", "rc_type::smallint DEFAULT 0"),
1487                 array("recentchanges","rc_patrolled",    "smallint", "rc_patrolled::smallint DEFAULT 0"),
1488                 array("revision",     "rev_minor_edit",  "smallint", "rev_minor_edit::smallint DEFAULT 0"),
1489                 array("templatelinks","tl_namespace",    "smallint", "tl_namespace::smallint"),
1490                 array("user_newtalk", "user_ip",         "text",     "host(user_ip)"),
1491         );
1493         $newindexes = array(
1494                 array("archive",       "archive_user_text", "(ar_user_text)"),
1495                 array("image",         "img_sha1",          "(img_sha1)"),
1496                 array("oldimage",      "oi_sha1",           "(oi_sha1)"),
1497                 array("revision",      "rev_text_id_idx",   "(rev_text_id)"),
1498         );
1500         $newrules = array(
1501         );
1503         foreach ($newsequences as $ns) {
1504                 if ($wgDatabase->sequenceExists($ns)) {
1505                         echo "... sequence \"$ns\" already exists\n";
1506                         continue;
1507                 }
1509                 echo "Creating sequence \"$ns\"\n";
1510                 $wgDatabase->query("CREATE SEQUENCE $ns");
1511         }
1513         foreach ($newtables as $nt) {
1514                 if ($wgDatabase->tableExists($nt[0])) {
1515                         echo "... table \"$nt[0]\" already exists\n";
1516                         continue;
1517                 }
1519                 echo "Creating table \"$nt[0]\"\n";
1520                 dbsource(archive($nt[1]));
1521         }
1523         ## Needed before newcols
1524         if ($wgDatabase->tableExists("archive2")) {
1525                 echo "Converting \"archive2\" back to normal archive table\n";
1526                 if ($wgDatabase->ruleExists("archive", "archive_insert")) {
1527                         echo "Dropping rule \"archive_insert\"\n";
1528                         $wgDatabase->query("DROP RULE archive_insert ON archive");
1529                 }
1530                 if ($wgDatabase->ruleExists("archive", "archive_delete")) {
1531                         echo "Dropping rule \"archive_delete\"\n";
1532                         $wgDatabase->query("DROP RULE archive_delete ON archive");
1533                 }
1534                 dbsource(archive("patch-remove-archive2.sql"));
1535         }
1536         else
1537                 echo "... obsolete table \"archive2\" does not exist\n";
1539         foreach ($newcols as $nc) {
1540                 $fi = $wgDatabase->fieldInfo($nc[0], $nc[1]);
1541                 if (!is_null($fi)) {
1542                         echo "... column \"$nc[0].$nc[1]\" already exists\n";
1543                         continue;
1544                 }
1546                 echo "Adding column \"$nc[0].$nc[1]\"\n";
1547                 $wgDatabase->query("ALTER TABLE $nc[0] ADD $nc[1] $nc[2]");
1548         }
1550         foreach ($typechanges as $tc) {
1551                 $fi = $wgDatabase->fieldInfo($tc[0], $tc[1]);
1552                 if (is_null($fi)) {
1553                         echo "... error: expected column $tc[0].$tc[1] to exist\n";
1554                         exit(1);
1555                 }
1557                 if ($fi->type() === $tc[2])
1558                         echo "... column \"$tc[0].$tc[1]\" is already of type \"$tc[2]\"\n";
1559                 else {
1560                         echo "Changing column type of \"$tc[0].$tc[1]\" from \"{$fi->type()}\" to \"$tc[2]\"\n";
1561                         $sql = "ALTER TABLE $tc[0] ALTER $tc[1] TYPE $tc[2]";
1562                         if (strlen($tc[3])) {
1563                                 $default = array();
1564                                 if (preg_match( '/DEFAULT (.+)/', $tc[3], $default)) {
1565                                         $sqldef = "ALTER TABLE $tc[0] ALTER $tc[1] SET DEFAULT $default[1]";
1566                                         $wgDatabase->query($sqldef);
1567                                         $tc[3] = preg_replace( '/\s*DEFAULT .+/', '', $tc[3]);
1568                                 }
1569                                 $sql .= " USING $tc[3]";
1570                         }
1571                         $sql .= ";\nCOMMIT;\n";
1572                         $wgDatabase->query($sql);
1573                 }
1574         }
1576         if ($wgDatabase->fieldInfo('oldimage','oi_deleted')->type() !== 'smallint') {
1577                 echo "Changing \"oldimage.oi_deleted\" to type \"smallint\"\n";
1578                 $wgDatabase->query( "ALTER TABLE oldimage ALTER oi_deleted DROP DEFAULT" );
1579                 $wgDatabase->query( "ALTER TABLE oldimage ALTER oi_deleted TYPE SMALLINT USING (oi_deleted::smallint)" );
1580                 $wgDatabase->query( "ALTER TABLE oldimage ALTER oi_deleted SET DEFAULT 0" );
1581         }
1582         else
1583                 echo "... column \"oldimage.oi_deleted\" is already of type \"smallint\"\n";
1586         foreach ($newindexes as $ni) {
1587                 if (pg_index_exists($ni[0], $ni[1])) {
1588                         echo "... index \"$ni[1]\" on table \"$ni[0]\" already exists\n";
1589                         continue;
1590                 }
1591                 echo "Creating index \"$ni[1]\" on table \"$ni[0]\" $ni[2]\n";
1592                 $wgDatabase->query( "CREATE INDEX $ni[1] ON $ni[0] $ni[2]" );
1593         }
1595         foreach ($newrules as $nr) {
1596                 if ($wgDatabase->ruleExists($nr[0], $nr[1])) {
1597                         echo "... rule \"$nr[1]\" on table \"$nr[0]\" already exists\n";
1598                         continue;
1599                 }
1600                 echo "Adding rule \"$nr[1]\" to table \"$nr[0]\"\n";
1601                 dbsource(archive($nr[2]));
1602         }
1604         if ($wgDatabase->hasConstraint("oldimage_oi_name_fkey")) {
1605                 echo "Making foriegn key on table \"oldimage\" (to image) a cascade delete\n";
1606                 $wgDatabase->query( "ALTER TABLE oldimage DROP CONSTRAINT oldimage_oi_name_fkey" );
1607                 $wgDatabase->query( "ALTER TABLE oldimage ADD CONSTRAINT oldimage_oi_name_fkey_cascade ".
1608                         "FOREIGN KEY (oi_name) REFERENCES image(img_name) ON DELETE CASCADE" );
1609         }
1610         else
1611                 echo "... table \"oldimage\" has correct cascade delete foreign key to image\n";
1613         if (!$wgDatabase->triggerExists("page", "page_deleted")) {
1614                 echo "Adding function and trigger \"page_deleted\" to table \"page\"\n";
1615                 dbsource(archive('patch-page_deleted.sql'));
1616         }
1617         else
1618                 echo "... table \"page\" has \"page_deleted\" trigger\n";
1620         $fi = $wgDatabase->fieldInfo("recentchanges", "rc_cur_id");
1621         if (!$fi->nullable()) {
1622                 echo "Removing NOT NULL constraint from \"recentchanges.rc_cur_id\"\n";
1623                 dbsource(archive('patch-rc_cur_id-not-null.sql'));
1624         }
1625         else
1626                 echo "... column \"recentchanges.rc_cur_id\" has a NOT NULL constraint\n";
1628         $pu = pg_describe_index("pagelink_unique");
1629         if (!is_null($pu) && ($pu[0] != "pl_from" || $pu[1] != "pl_namespace" || $pu[2] != "pl_title")) {
1630                 echo "Dropping obsolete version of index \"pagelink_unique index\"\n";
1631                 $wgDatabase->query("DROP INDEX pagelink_unique");
1632                 $pu = null;
1633         }
1634         else
1635                 echo "... obsolete version of index \"pagelink_unique index\" does not exist\n";
1637         if (is_null($pu)) {
1638                 echo "Creating index \"pagelink_unique index\"\n";
1639                 $wgDatabase->query("CREATE UNIQUE INDEX pagelink_unique ON pagelinks (pl_from,pl_namespace,pl_title)");
1640         }
1641         else
1642                 echo "... index \"pagelink_unique_index\" aready exists\n";
1644         if (pg_fkey_deltype("revision_rev_user_fkey") == 'r') {
1645                 echo "... constraint \"revision_rev_user_fkey\" is ON DELETE RESTRICT\n";
1646         }
1647         else {
1648                 echo "Changing constraint \"revision_rev_user_fkey\" to ON DELETE RESTRICT\n";
1649                 dbsource(archive('patch-revision_rev_user_fkey.sql'));
1650         }
1652         global $wgExtNewTables, $wgExtPGNewFields, $wgExtNewIndexes;
1653         # Add missing extension tables
1654         foreach ( $wgExtNewTables as $nt ) {
1655                 if ($wgDatabase->tableExists($nt[0])) {
1656                         echo "... table \"$nt[0]\" already exists\n";
1657                         continue;
1658                 }
1659                 echo "Creating table \"$nt[0]\"\n";
1660                 dbsource($nt[1]);
1661         }
1662         # Add missing extension fields
1663         foreach ( $wgExtPGNewFields as $nc ) {
1664                 $fi = $wgDatabase->fieldInfo($nc[0], $nc[1]);
1665                 if (!is_null($fi)) {
1666                         echo "... column \"$nc[0].$nc[1]\" already exists\n";
1667                         continue;
1668                 }
1669                 echo "Adding column \"$nc[0].$nc[1]\"\n";
1670                 $wgDatabase->query( "ALTER TABLE $nc[0] ADD $nc[1] $nc[2]" );
1671         }
1672         # Add missing extension indexes
1673         foreach ( $wgExtNewIndexes as $ni ) {
1674                 if (pg_index_exists($ni[0], $ni[1])) {
1675                         echo "... index \"$ni[1]\" on table \"$ni[0]\" already exists\n";
1676                         continue;
1677                 }
1678                 echo "Creating index \"$ni[1]\" on table \"$ni[0]\"\n";
1679                 dbsource($ni[2]);
1680         }
1682         # Tweak the page_title tsearch2 trigger to filter out slashes
1683         # This is create or replace, so harmless to call if not needed
1684         dbsource(archive('patch-ts2pagetitle.sql'));
1686         ## If the server is 8.3 or higher, rewrite teh tsearch2 triggers
1687         ## in case they have the old 'default' versions
1688         if ( $numver >= 8.3 )
1689                 dbsource(archive('patch-tsearch2funcs.sql'));
1691         return;