25 require_once __DIR__ .
'/../../maintenance/Maintenance.php';
119 $this->maintenance->
setDB( $db );
122 Hooks::run(
'LoadExtensionSchemaUpdates', [ $this ] );
130 global $wgExtNewTables, $wgExtNewFields, $wgExtPGNewFields,
131 $wgExtPGAlteredFields, $wgExtNewIndexes, $wgExtModifiedFields;
133 # For extensions only, should be populated via hooks
134 # $wgDBtype should be checked to specifiy the proper file
135 $wgExtNewTables = [];
136 $wgExtNewFields = [];
137 $wgExtPGNewFields = [];
138 $wgExtPGAlteredFields = [];
139 $wgExtNewIndexes = [];
140 $wgExtModifiedFields = [];
148 if ( !defined(
'MEDIAWIKI_INSTALL' ) ) {
154 $queue = $registry->getQueue();
156 $registry->clearQueue();
159 $data = $registry->readFromQueue(
$queue );
160 $hooks = [
'wgHooks' => [
'LoadExtensionSchemaUpdates' => [] ] ];
161 if ( isset( $data[
'globals'][
'wgHooks'][
'LoadExtensionSchemaUpdates'] ) ) {
162 $hooks = $data[
'globals'][
'wgHooks'][
'LoadExtensionSchemaUpdates'];
164 if (
$vars && isset(
$vars[
'wgHooks'][
'LoadExtensionSchemaUpdates'] ) ) {
165 $hooks = array_merge_recursive( $hooks,
$vars[
'wgHooks'][
'LoadExtensionSchemaUpdates'] );
168 $wgHooks[
'LoadExtensionSchemaUpdates'] = $hooks;
169 if (
$vars && isset(
$vars[
'wgAutoloadClasses'] ) ) {
170 $wgAutoloadClasses +=
$vars[
'wgAutoloadClasses'];
185 $class = ucfirst(
$type ) .
'Updater';
189 throw new MWException( __METHOD__ .
' called for unsupported $wgDBtype' );
208 if ( $this->maintenance->isQuiet() ) {
212 if ( !$wgCommandLineMode ) {
213 $str = htmlspecialchars( $str );
232 $this->extensionUpdates[] = $update;
245 $this->extensionUpdates[] = [
'addTable', $tableName, $sqlPath,
true ];
256 $this->extensionUpdates[] = [
'addIndex', $tableName, $indexName, $sqlPath,
true ];
268 $this->extensionUpdates[] = [
'addField', $tableName, $columnName, $sqlPath,
true ];
280 $this->extensionUpdates[] = [
'dropField', $tableName, $columnName, $sqlPath,
true ];
293 $this->extensionUpdates[] = [
'dropIndex', $tableName, $indexName, $sqlPath,
true ];
304 $this->extensionUpdates[] = [
'dropTable', $tableName, $sqlPath,
true ];
320 $sqlPath, $skipBothIndexExistWarning =
false
322 $this->extensionUpdates[] = [
327 $skipBothIndexExistWarning,
341 $this->extensionUpdates[] = [
'modifyField', $tableName, $fieldName, $sqlPath,
true ];
352 return ( $this->db->tableExists( $tableName, __METHOD__ ) );
365 $this->postDatabaseUpdateMaintenance[] = $class;
394 $this->updatesSkipped = [];
397 $func = $funcList[0];
399 $origParams = $funcList[2];
400 call_user_func_array( $func, $arg );
402 $this->updatesSkipped[] = $origParams;
425 public function doUpdates( $what = [
'core',
'extensions',
'stats' ] ) {
430 $what = array_flip( $what );
431 $this->skipSchema = isset( $what[
'noschema'] ) || $this->fileHandle !== null;
432 if ( isset( $what[
'core'] ) ) {
435 if ( isset( $what[
'extensions'] ) ) {
440 if ( isset( $what[
'stats'] ) ) {
446 if ( $this->fileHandle ) {
447 $this->skipSchema =
false;
460 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
466 $func = array_shift( $params );
467 if ( !is_array( $func ) && method_exists( $this, $func ) ) {
468 $func = [ $this, $func ];
469 } elseif ( $passSelf ) {
470 array_unshift( $params, $this );
472 $ret = call_user_func_array( $func, $params );
474 if (
$ret !==
false ) {
475 $updatesDone[] = $origParams;
481 $this->updatesSkipped = array_merge( $this->updatesSkipped,
$updatesSkipped );
494 $key =
"updatelist-$version-" . time() . self::$updateCounter;
495 self::$updateCounter++;
496 $this->db->insert(
'updatelog',
510 $row = $this->db->selectRow(
514 [
'ul_key' => $key ],
530 $values = [
'ul_key' => $key ];
532 $values[
'ul_value'] = $val;
534 $this->db->insert(
'updatelog', $values, __METHOD__,
'IGNORE' );
547 return $this->db->tableExists(
'updatelog', __METHOD__ ) &&
548 $this->db->fieldExists(
'updatelog',
'ul_value', __METHOD__ );
564 if ( $wgSharedDB === null || $this->shared ) {
568 if ( in_array(
$name, $wgSharedTables ) ) {
569 $this->
output(
"...skipping update to shared table $name.\n" );
585 global $wgExtNewFields, $wgExtNewTables, $wgExtModifiedFields,
590 foreach ( $wgExtNewTables
as $tableRecord ) {
592 'addTable', $tableRecord[0], $tableRecord[1],
true
596 foreach ( $wgExtNewFields
as $fieldRecord ) {
598 'addField', $fieldRecord[0], $fieldRecord[1],
599 $fieldRecord[2],
true
603 foreach ( $wgExtNewIndexes
as $fieldRecord ) {
605 'addIndex', $fieldRecord[0], $fieldRecord[1],
606 $fieldRecord[2],
true
610 foreach ( $wgExtModifiedFields
as $fieldRecord ) {
612 'modifyField', $fieldRecord[0], $fieldRecord[1],
613 $fieldRecord[2],
true
636 $this->db->sourceFile(
641 [ $this,
'appendLine' ]
657 if ( fwrite( $this->fileHandle,
$line ) ===
false ) {
673 if ( $msg === null ) {
674 $msg =
"Applying $path patch";
676 if ( $this->skipSchema ) {
677 $this->
output(
"...skipping schema change ($msg).\n" );
682 $this->
output(
"$msg ..." );
684 if ( !$isFullPath ) {
687 if ( $this->fileHandle !== null ) {
690 $this->db->sourceFile(
$path );
692 $this->
output(
"done.\n" );
710 if ( file_exists(
"$IP/maintenance/$dbType/archives/$patch" ) ) {
711 return "$IP/maintenance/$dbType/archives/$patch";
713 return "$IP/maintenance/archives/$patch";
730 if ( $this->db->tableExists(
$name, __METHOD__ ) ) {
731 $this->
output(
"...$name table already exists.\n" );
733 return $this->
applyPatch( $patch, $fullpath,
"Creating $name table" );
748 protected function addField( $table, $field, $patch, $fullpath =
false ) {
749 if ( !$this->
doTable( $table ) ) {
753 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
754 $this->
output(
"...$table table does not exist, skipping new field patch.\n" );
755 } elseif ( $this->db->fieldExists( $table, $field, __METHOD__ ) ) {
756 $this->
output(
"...have $field field in $table table.\n" );
758 return $this->
applyPatch( $patch, $fullpath,
"Adding $field field to table $table" );
773 protected function addIndex( $table, $index, $patch, $fullpath =
false ) {
774 if ( !$this->
doTable( $table ) ) {
778 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
779 $this->
output(
"...skipping: '$table' table doesn't exist yet.\n" );
780 } elseif ( $this->db->indexExists( $table, $index, __METHOD__ ) ) {
781 $this->
output(
"...index $index already set on $table table.\n" );
783 return $this->
applyPatch( $patch, $fullpath,
"Adding index $index to table $table" );
798 protected function dropField( $table, $field, $patch, $fullpath =
false ) {
799 if ( !$this->
doTable( $table ) ) {
803 if ( $this->db->fieldExists( $table, $field, __METHOD__ ) ) {
804 return $this->
applyPatch( $patch, $fullpath,
"Table $table contains $field field. Dropping" );
806 $this->
output(
"...$table table does not contain $field field.\n" );
821 protected function dropIndex( $table, $index, $patch, $fullpath =
false ) {
822 if ( !$this->
doTable( $table ) ) {
826 if ( $this->db->indexExists( $table, $index, __METHOD__ ) ) {
827 return $this->
applyPatch( $patch, $fullpath,
"Dropping $index index from table $table" );
829 $this->
output(
"...$index key doesn't exist.\n" );
848 $skipBothIndexExistWarning, $patch, $fullpath =
false
850 if ( !$this->
doTable( $table ) ) {
855 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
856 $this->
output(
"...skipping: '$table' table doesn't exist yet.\n" );
862 if ( $this->db->indexExists( $table, $newIndex, __METHOD__ ) ) {
863 $this->
output(
"...index $newIndex already set on $table table.\n" );
864 if ( !$skipBothIndexExistWarning &&
865 $this->db->indexExists( $table, $oldIndex, __METHOD__ )
867 $this->
output(
"...WARNING: $oldIndex still exists, despite it has " .
868 "been renamed into $newIndex (which also exists).\n" .
869 " $oldIndex should be manually removed if not needed anymore.\n" );
876 if ( !$this->db->indexExists( $table, $oldIndex, __METHOD__ ) ) {
877 $this->
output(
"...skipping: index $oldIndex doesn't exist.\n" );
886 "Renaming index $oldIndex into $newIndex to table $table"
901 public function dropTable( $table, $patch =
false, $fullpath =
false ) {
902 if ( !$this->
doTable( $table ) ) {
906 if ( $this->db->tableExists( $table, __METHOD__ ) ) {
907 $msg =
"Dropping table $table";
909 if ( $patch ===
false ) {
910 $this->
output(
"$msg ..." );
911 $this->db->dropTable( $table, __METHOD__ );
912 $this->
output(
"done.\n" );
914 return $this->
applyPatch( $patch, $fullpath, $msg );
917 $this->
output(
"...$table doesn't exist.\n" );
932 public function modifyField( $table, $field, $patch, $fullpath =
false ) {
933 if ( !$this->
doTable( $table ) ) {
937 $updateKey =
"$table-$field-$patch";
938 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
939 $this->
output(
"...$table table does not exist, skipping modify field patch.\n" );
940 } elseif ( !$this->db->fieldExists( $table, $field, __METHOD__ ) ) {
941 $this->
output(
"...$field field does not exist in $table table, " .
942 "skipping modify field patch.\n" );
944 $this->
output(
"...$field in table $table already modified by patch $patch.\n" );
948 return $this->
applyPatch( $patch, $fullpath,
"Modifying $field field of table $table" );
961 $zonePath = $repo->getZonePath(
'temp' );
962 if ( $repo->getBackend()->directoryExists( [
'dir' => $zonePath ] ) ) {
964 $status = $repo->getBackend()->secure( [
970 $this->
output(
"Set the local repo temp zone container to be private.\n" );
972 $this->
output(
"Failed to set the local repo temp zone container to be private.\n" );
982 # We can't guarantee that the user will be able to use TRUNCATE,
983 # but we know that DELETE is available to us
984 $this->
output(
"Purging caches..." );
985 $this->db->delete(
'objectcache',
'*', __METHOD__ );
986 if ( $wgLocalisationCacheConf[
'manualRecache'] ) {
991 $this->db->delete(
'module_deps',
'*', __METHOD__ );
992 $this->
output(
"done.\n" );
999 $this->
output(
"...site_stats is populated..." );
1000 $row = $this->db->selectRow(
'site_stats',
'*', [
'ss_row_id' => 1 ], __METHOD__ );
1001 if ( $row ===
false ) {
1002 $this->
output(
"data is missing! rebuilding...\n" );
1003 } elseif ( isset( $row->site_stats ) && $row->ss_total_pages == -1 ) {
1004 $this->
output(
"missing ss_total_pages, rebuilding...\n" );
1006 $this->
output(
"done.\n" );
1013 # Common updater functions
1019 $activeUsers = $this->db->selectField(
'site_stats',
'ss_active_users',
false, __METHOD__ );
1020 if ( $activeUsers == -1 ) {
1021 $activeUsers = $this->db->selectField(
'recentchanges',
1022 'COUNT( DISTINCT rc_user_text )',
1023 [
'rc_user != 0',
'rc_bot' => 0,
"rc_log_type != 'newusers'" ], __METHOD__
1025 $this->db->update(
'site_stats',
1026 [
'ss_active_users' => intval( $activeUsers ) ],
1027 [
'ss_row_id' => 1 ], __METHOD__, [
'LIMIT' => 1 ]
1030 $this->
output(
"...ss_active_users user count set...\n" );
1039 "Populating log_user_text field, printing progress markers. For large\n" .
1040 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1041 "maintenance/populateLogUsertext.php.\n"
1044 $task = $this->maintenance->runChild(
'PopulateLogUsertext' );
1046 $this->
output(
"done.\n" );
1056 "Populating log_search table, printing progress markers. For large\n" .
1057 "databases, you may want to hit Ctrl-C and do this manually with\n" .
1058 "maintenance/populateLogSearch.php.\n" );
1060 $task = $this->maintenance->runChild(
'PopulateLogSearch' );
1062 $this->
output(
"done.\n" );
1072 $this->
output(
"...transcache tc_time already converted.\n" );
1077 return $this->
applyPatch(
'patch-tc-timestamp.sql',
false,
1078 "Converting tc_time from UNIX epoch to MediaWiki timestamp" );
1085 global $wgCategoryCollation;
1086 if ( $this->db->fieldExists(
'categorylinks',
'cl_collation', __METHOD__ ) ) {
1087 if ( $this->db->selectField(
1090 'cl_collation != ' . $this->db->addQuotes( $wgCategoryCollation ),
1094 $this->
output(
"...collations up-to-date.\n" );
1099 $this->
output(
"Updating category collations..." );
1100 $task = $this->maintenance->runChild(
'UpdateCollation' );
1102 $this->
output(
"...done.\n" );
1110 if ( $this->db->tableExists(
'user_properties' ) ) {
1111 $cl = $this->maintenance->runChild(
'ConvertUserOptions',
'convertUserOptions.php' );
1113 $this->
output(
"done.\n" );
1123 if ( !$this->
doTable(
'profiling' ) ) {
1127 $profileToDb =
false;
1128 if ( isset( $wgProfiler[
'output'] ) ) {
1129 $out = $wgProfiler[
'output'];
1130 if (
$out ===
'db' ) {
1131 $profileToDb =
true;
1132 } elseif ( is_array(
$out ) && in_array(
'db',
$out ) ) {
1133 $profileToDb =
true;
1137 if ( $profileToDb && !$this->db->tableExists(
'profiling', __METHOD__ ) ) {
1138 $this->
applyPatch(
'patch-profiling.sql',
false,
'Add profiling table' );
1149 $cl = $this->maintenance->runChild(
'RebuildLocalisationCache',
'rebuildLocalisationCache.php' );
1150 $this->
output(
"Rebuilding localisation cache...\n" );
1153 $this->
output(
"done.\n" );
1161 global $wgContentHandlerUseDB;
1163 if ( $wgContentHandlerUseDB ) {
1164 $this->
output(
"Turning off Content Handler DB fields for this part of upgrade.\n" );
1165 $this->holdContentHandlerUseDB = $wgContentHandlerUseDB;
1166 $wgContentHandlerUseDB =
false;
1174 global $wgContentHandlerUseDB;
1176 if ( $this->holdContentHandlerUseDB ) {
1177 $this->
output(
"Content Handler DB fields should be usable now.\n" );
This class generates message blobs for use by ResourceLoader modules.
getSchemaVars()
Get appropriate schema variables in the current database connection.
doUpdates($what=[ 'core', 'extensions', 'stats'])
Do all the updates.
array $extensionUpdates
List of extension-provided database updates.
copyFile($filename)
Append an SQL fragment to the open file handle.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
the array() calling protocol came about after MediaWiki 1.4rc1.
$wgVersion
MediaWiki version number.
getExtensionUpdates()
Get the list of extension-defined updates.
canUseNewUpdatelog()
Updatelog was changed in 1.17 to have a ul_value column so we can record more information about what ...
dropExtensionField($tableName, $columnName, $sqlPath)
loadExtensions()
Loads LocalSettings.php, if needed, and initialises everything needed for LoadExtensionSchemaUpdates ...
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
applyPatch($path, $isFullPath=false, $msg=null)
Applies a SQL patch.
dropTable($table, $patch=false, $fullpath=false)
If the specified table exists, drop it, or execute the patch if one is provided.
patchPath(IDatabase $db, $patch)
Get the full path of a patch file.
addExtensionTable($tableName, $sqlPath)
Convenience wrapper for addExtensionUpdate() when adding a new table (which is the most common usage ...
Class for handling database updates.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
resource $fileHandle
File handle for SQL output.
rebuildLocalisationCache()
Rebuilds the localisation cache.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
$wgHooks['ArticleShow'][]
string[] $postDatabaseUpdateMaintenance
Scripts to run after database update Should be a subclass of LoggedUpdateMaintenance.
output($str)
Output some text.
setFlag($flag, $remember=self::REMEMBER_NOTHING)
Set a flag for this connection.
checkStats()
Check the site_stats table is not properly populated.
when a variable name is used in a it is silently declared as a new local masking the global
doUpdateTranscacheField()
Updates the timestamps in the transcache table.
dropIndex($table, $index, $patch, $fullpath=false)
Drop an index from an existing table.
static newForDB(Database $db, $shared=false, $maintenance=null)
getType()
Get the type of the DBMS, as it appears in $wgDBtype.
addPostDatabaseUpdateMaintenance($class)
Add a maintenance script to be run after the database updates are complete.
static doAllAndCommit($database, array $options=[])
Do all updates and commit them.
bool $skipSchema
Flag specifying whether or not to skip schema (e.g.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Fake maintenance wrapper, mostly used for the web installer/updater.
getDB()
Get a database connection to run updates.
global $wgCommandLineMode
dropExtensionIndex($tableName, $indexName, $sqlPath)
Drop an index from an extension table.
Database $db
Handle to the database subclass.
$wgLocalisationCacheConf
Localisation cache configuration.
disableContentHandlerUseDB()
Turns off content handler fields during parts of the upgrade where they aren't available.
initOldGlobals()
Initialize all of the old globals.
array $updates
Array of updates to perform on the database.
dropField($table, $field, $patch, $fullpath=false)
Drop a field from an existing table.
array $updatesSkipped
Array of updates that were skipped.
static singleton()
Get a RepoGroup instance.
addExtensionIndex($tableName, $indexName, $sqlPath)
static getExistingLocalSettings()
Determine if LocalSettings.php exists.
setDB(IDatabase $db)
Sets database object to be returned by getDB().
addIndex($table, $index, $patch, $fullpath=false)
Add a new index to an existing table.
purgeCache()
Purge the objectcache table.
$wgSharedDB
Shared database for multiple wikis.
getPostDatabaseUpdateMaintenance()
addField($table, $field, $patch, $fullpath=false)
Add a new field to an existing table.
setAppliedUpdates($version, $updates=[])
global $wgAutoloadClasses
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
addTable($name, $patch, $fullpath=false)
Add a new table to the database.
insertUpdateRow($key, $val=null)
Helper function: Add a key to the updatelog table Obviously, only use this for updates that occur aft...
doEnableProfiling()
Enable profiling table when it's turned on.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
appendLine($line)
Append a line to the open filehandle.
getCoreUpdateList()
Get an array of updates to perform on the database.
dropExtensionTable($tableName, $sqlPath)
doActiveUsersInit()
Sets the number of active users in the site_stats table.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
doMigrateUserOptions()
Migrates user options from the user table blob to user_properties.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these updates(as a Java servelet could)
__construct(Database &$db, $shared, Maintenance $maintenance=null)
Constructor.
addExtensionField($tableName, $columnName, $sqlPath)
renameExtensionIndex($tableName, $oldIndexName, $newIndexName, $sqlPath, $skipBothIndexExistWarning=false)
Rename an index on an extension table.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
modifyField($table, $field, $patch, $fullpath=false)
Modify an existing field.
doLogSearchPopulation()
Migrate log params to new table and index for searching.
runUpdates(array $updates, $passSelf)
Helper function for doUpdates()
updateRowExists($key)
Helper function: check if the given key is present in the updatelog table.
static getDBTypes()
Get a list of known DB types.
$holdContentHandlerUseDB
Hold the value of $wgContentHandlerUseDB during the upgrade.
enableContentHandlerUseDB()
Turns content handler fields back on.
writeSchemaUpdateFile($schemaUpdate=[])
addExtensionUpdate(array $update)
Add a new update coming from an extension.
renameIndex($table, $oldIndex, $newIndex, $skipBothIndexExistWarning, $patch, $fullpath=false)
Rename an index from an existing table.
setFileAccess()
Set any .htaccess files or equivilent for storage repos.
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
modifyExtensionField($tableName, $fieldName, $sqlPath)
doCollationUpdate()
Update CategoryLinks collation.
getOldGlobalUpdates()
Before 1.17, we used to handle updates via stuff like $wgExtNewTables/Fields/Indexes.
Basic database interface for live and lazy-loaded relation database handles.
doLogUsertextPopulation()
Populates the log_user_text field in the logging table.
doTable($name)
Returns whether updates should be executed on the database table $name.
Allows to change the fields on the form that will be generated $name