MediaWiki REL1_30
MssqlUpdater.php
Go to the documentation of this file.
1<?php
25
34
38 protected $db;
39
40 protected function getCoreUpdateList() {
41 return [
42 // 1.23
43 [ 'addField', 'mwuser', 'user_password_expires', 'patch-user_password_expires.sql' ],
44
45 // 1.24
46 [ 'addField', 'page', 'page_lang', 'patch-page_page_lang.sql' ],
47
48 // 1.25
49 [ 'dropTable', 'hitcounter' ],
50 [ 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ],
51 [ 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ],
52 // scripts were updated in 1.27 due to SQL errors; retaining old updatekeys so that people
53 // updating from 1.23->1.25->1.27 do not execute these scripts twice even though the
54 // updatekeys no longer make sense as they are.
55 [ 'updateSchema', 'categorylinks', 'cl_type-category_types-ck',
56 'patch-categorylinks-constraints.sql' ],
57 [ 'updateSchema', 'filearchive', 'fa_major_mime-major_mime-ck',
58 'patch-filearchive-constraints.sql' ],
59 [ 'updateSchema', 'oldimage', 'oi_major_mime-major_mime-ck',
60 'patch-oldimage-constraints.sql' ],
61 [ 'updateSchema', 'image', 'img_major_mime-major_mime-ck', 'patch-image-constraints.sql' ],
62 [ 'updateSchema', 'uploadstash', 'us_media_type-media_type-ck',
63 'patch-uploadstash-constraints.sql' ],
64
65 [ 'modifyField', 'image', 'img_major_mime',
66 'patch-img_major_mime-chemical.sql' ],
67 [ 'modifyField', 'oldimage', 'oi_major_mime',
68 'patch-oi_major_mime-chemical.sql' ],
69 [ 'modifyField', 'filearchive', 'fa_major_mime',
70 'patch-fa_major_mime-chemical.sql' ],
71
72 // 1.27
73 [ 'dropTable', 'msg_resource_links' ],
74 [ 'dropTable', 'msg_resource' ],
75 [ 'addField', 'watchlist', 'wl_id', 'patch-watchlist-wl_id.sql' ],
76 [ 'dropField', 'mwuser', 'user_options', 'patch-drop-user_options.sql' ],
77 [ 'addTable', 'bot_passwords', 'patch-bot_passwords.sql' ],
78 [ 'addField', 'pagelinks', 'pl_from_namespace', 'patch-pl_from_namespace.sql' ],
79 [ 'addField', 'templatelinks', 'tl_from_namespace', 'patch-tl_from_namespace.sql' ],
80 [ 'addField', 'imagelinks', 'il_from_namespace', 'patch-il_from_namespace.sql' ],
81 [ 'dropIndex', 'categorylinks', 'cl_collation', 'patch-kill-cl_collation_index.sql' ],
82 [ 'addIndex', 'categorylinks', 'cl_collation_ext',
83 'patch-add-cl_collation_ext_index.sql' ],
84 [ 'dropField', 'recentchanges', 'rc_cur_time', 'patch-drop-rc_cur_time.sql' ],
85 [ 'addField', 'page_props', 'pp_sortkey', 'patch-pp_sortkey.sql' ],
86 [ 'updateSchema', 'oldimage', 'oldimage varchar', 'patch-oldimage-schema.sql' ],
87 [ 'updateSchema', 'filearchive', 'filearchive varchar', 'patch-filearchive-schema.sql' ],
88 [ 'updateSchema', 'image', 'image varchar', 'patch-image-schema.sql' ],
89 [ 'updateSchema', 'recentchanges', 'recentchanges-drop-fks',
90 'patch-recentchanges-drop-fks.sql' ],
91 [ 'updateSchema', 'logging', 'logging-drop-fks', 'patch-logging-drop-fks.sql' ],
92 [ 'updateSchema', 'archive', 'archive-drop-fks', 'patch-archive-drop-fks.sql' ],
93
94 // 1.28
95 [ 'addIndex', 'recentchanges', 'rc_name_type_patrolled_timestamp',
96 'patch-add-rc_name_type_patrolled_timestamp_index.sql' ],
97 [ 'addField', 'change_tag', 'ct_id', 'patch-change_tag-ct_id.sql' ],
98 [ 'addField', 'tag_summary', 'ts_id', 'patch-tag_summary-ts_id.sql' ],
99
100 // 1.29
101 [ 'addField', 'externallinks', 'el_index_60', 'patch-externallinks-el_index_60.sql' ],
102 [ 'dropIndex', 'oldimage', 'oi_name_archive_name',
103 'patch-alter-table-oldimage.sql' ],
104
105 // 1.30
106 [ 'modifyField', 'image', 'img_media_type', 'patch-add-3d.sql' ],
107 [ 'addIndex', 'site_stats', 'PRIMARY', 'patch-site_stats-pk.sql' ],
108 ];
109 }
110
111 protected function applyPatch( $path, $isFullPath = false, $msg = null ) {
112 $prevScroll = $this->db->scrollableCursor( false );
113 $prevPrep = $this->db->prepareStatements( false );
114 parent::applyPatch( $path, $isFullPath, $msg );
115 $this->db->scrollableCursor( $prevScroll );
116 $this->db->prepareStatements( $prevPrep );
117 }
118
131 protected function updateSchema( $table, $updatekey, $patch, $fullpath = false ) {
132 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
133 $this->output( "...$table table does not exist, skipping schema update patch.\n" );
134 } elseif ( $this->updateRowExists( $updatekey ) ) {
135 $this->output( "...$table already had schema updated by $patch.\n" );
136 } else {
137 $apply = $this->applyPatch( $patch, $fullpath, "Updating schema of table $table" );
138 if ( $apply ) {
139 $this->insertUpdateRow( $updatekey );
140 }
141 return $apply;
142 }
143
144 return true;
145 }
146}
Class for handling database updates.
updateRowExists( $key)
Helper function: check if the given key is present in the updatelog table.
insertUpdateRow( $key, $val=null)
Helper function: Add a key to the updatelog table Obviously, only use this for updates that occur aft...
Class for setting up the MediaWiki database using Microsoft SQL Server.
updateSchema( $table, $updatekey, $patch, $fullpath=false)
General schema update for a table that touches more than one field or requires destructive actions (s...
DatabaseMssql $db
applyPatch( $path, $isFullPath=false, $msg=null)
Applies a SQL patch.
getCoreUpdateList()
Get an array of updates to perform on the database.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful